Files
node-factorio-recipes/components/home/Home.module.css
Sebastian Seedorf d964748a66 Styling of home
2022-08-22 17:04:39 +02:00

23 lines
360 B
CSS

.content {
max-width: 80ch;
margin: 0 auto;
text-align: justify;
}
.grid {
display: grid;
gap: 1em;
grid-template-columns: repeat(auto-fit, minmax(450px, max-content));
margin-block-start: -2em;
}
.entitySpanList > * {
width: max-content;
}
@media (max-width: 600px) {
.grid {
grid-template-columns: 1fr;
}
}