Template:Background locations/styles.css

From Tears of Themis Wiki
.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);
	}
}