25 lines
296 B
CSS
25 lines
296 B
CSS
.header,
|
|
.hgroup {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.header {
|
|
gap: var(--Spacing-x2);
|
|
grid-area: header;
|
|
}
|
|
|
|
.hgroup {
|
|
gap: var(--Spacing-x-half);
|
|
}
|
|
|
|
.body {
|
|
max-width: 720px;
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.header {
|
|
padding-bottom: var(--Spacing-x4);
|
|
}
|
|
}
|