fix(BOOK-436): Added new section component and deprecated the other

Approved-by: Chuma Mcphoy (We Ahead)
This commit is contained in:
Erik Tiekstra
2025-10-13 08:31:26 +00:00
parent 7bd75f01e4
commit 339e7195dc
34 changed files with 245 additions and 177 deletions

View File

@@ -1,11 +1,15 @@
.header {
display: grid;
gap: var(--Spacing-x1) var(--Spacing-x5);
gap: var(--Space-x1) var(--Space-x5);
grid-template-columns: 1fr;
align-items: baseline;
}
.title,
.heading {
color: var(--Text-Heading);
}
.heading,
.preamble {
grid-column: 1 / -1;
max-width: var(--max-width-text-block);
@@ -16,7 +20,7 @@
grid-template-columns: 1fr auto;
}
.title {
.heading {
grid-column: 1 / 2;
}