1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-10-16 23:17:26 +00:00
festa/styles/components/views/content.css

23 lines
No EOL
365 B
CSS

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