Files
node-factorio-recipes/components/Home.module.css
Sebastian Seedorf 6d3aae7fe9 Added entity span
2022-08-09 12:24:47 +02:00

15 lines
232 B
CSS

.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(500px, max-content));
}
.missingFactories {
display: flex;
flex-wrap: wrap;
gap: 0.1em;
}
.missingFactories > * {
width: max-content;
}