Template:Background locations/styles.css

From Tears of Themis Wiki
< Template:Background locations
Revision as of 23:20, 30 December 2021 by imported>Elaeagnifolia
.background-locations-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 5px;
	align-items: end;
}

@media only screen and (max-width: 768px) {
	.background-locations-grid {
	    grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width: 450px) {
	.background-locations-grid {
	    grid-template-columns: repeat(1, 1fr);
	}
}