Template:Background locations/styles.css

From Tears of Themis Wiki
< Template:Background locations
Revision as of 07:52, 12 March 2022 by imported>Harmonea (personal preference sorry)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
.background-locations-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 5px;
	align-items: start;
}

@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);
	}
}