Files
web/apps/scandic-web/components/Section/Header/header.module.css
Erik Tiekstra 339e7195dc fix(BOOK-436): Added new section component and deprecated the other
Approved-by: Chuma Mcphoy (We Ahead)
2025-10-13 08:31:26 +00:00

31 lines
438 B
CSS

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