1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-10-16 15:07:27 +00:00
festa/components/generic/views/content.module.css

25 lines
No EOL
374 B
CSS

.viewContent {
display: grid;
grid-template-areas:
"title"
"content"
;
grid-template-columns: auto;
grid-template-rows: auto 1fr;
gap: 4px;
justify-content: stretch;
max-width: 800px;
margin: 0 auto;
}
.viewContentTitle {
grid-area: title;
text-align: center;
}
.viewContentContent {
grid-area: content;
}