Files
web/components/Section/Header/header.module.css
2025-01-14 14:56:18 +01:00

27 lines
394 B
CSS

.header {
display: grid;
gap: var(--Spacing-x1) var(--Spacing-x5);
grid-template-columns: 1fr;
align-items: baseline;
}
.title,
.preamble {
grid-column: 1 / -1;
max-width: var(--max-width-text-block);
}
@media screen and (min-width: 768px) {
.header {
grid-template-columns: 1fr auto;
}
.title {
grid-column: 1 / 2;
}
.preamble {
grid-column: 1 / 2;
}
}