refactor: breakout section header
This commit is contained in:
20
components/SectionHeader/sectionHeader.module.css
Normal file
20
components/SectionHeader/sectionHeader.module.css
Normal file
@@ -0,0 +1,20 @@
|
||||
.header {
|
||||
display: grid;
|
||||
gap: var(--Spacing-x1);
|
||||
grid-template-columns: 1fr auto;
|
||||
}
|
||||
|
||||
.title {
|
||||
grid-column: 1/2;
|
||||
grid-row: 1/2;
|
||||
}
|
||||
|
||||
.link {
|
||||
grid-column: 2/-1;
|
||||
grid-row: 1/2;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
grid-column: 1/-1;
|
||||
grid-row: 2;
|
||||
}
|
||||
Reference in New Issue
Block a user