/*
 * Custom/additional styles for the TYPO3 backend
 */

.icon-listing {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(10em, 1fr));
	grid-gap: 1em 1em;
	grid-auto-flow: row dense;
	justify-items: center;
}
.icon-listing .icon-wrap {
	padding: 1em;
	width: 100%;
	text-align: center;
	background-color: #fafafa;
	border-radius: 2px;
}
.icon-listing .icon {
	width: auto;
	height: 3em;
	margin: 1em
}
.icon-listing .icon-name {
	width: 100%;
	min-height: 2.125em;
	line-height: 1.25;
	overflow: hidden;
	text-overflow: ellipsis;
}
