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

23 lines
359 B
CSS
Raw Normal View History

2022-06-11 03:08:49 +00:00
.viewContent {
2022-06-04 03:13:19 +00:00
display: grid;
2022-06-11 03:08:49 +00:00
grid-template-areas:
2022-06-04 03:13:19 +00:00
"title"
"content"
;
grid-template-columns: auto;
grid-template-rows: auto 1fr;
justify-content: stretch;
2022-06-05 15:35:35 +00:00
max-width: 800px;
margin: 0 auto;
2022-06-04 03:13:19 +00:00
}
2022-06-11 03:08:49 +00:00
.viewContentTitle {
2022-06-04 03:13:19 +00:00
grid-area: title;
text-align: center;
}
2022-06-11 03:08:49 +00:00
.viewContentContent {
2022-06-04 03:13:19 +00:00
grid-area: content;
}