This commit is contained in:
2025-06-02 16:58:12 -07:00
parent 9e61f42c4d
commit 189aa824b1
3 changed files with 38 additions and 4 deletions

View File

@@ -3,6 +3,11 @@ section.blue-background-grid {
padding: 4rem;
color: $c-white;
h2 {
@extend .goudy;
@extend .headline-lg;
}
.col {
position: relative;
}
@@ -13,4 +18,19 @@ section.blue-background-grid {
height: auto;
opacity: 0.5;
}
.blocks {
display: flex;
flex-direction: column;
@include media-breakpoint-up(lg) {
flex-direction: row;
flex-wrap: wrap;
.block:first-of-type {
width: 50%;
padding-right: 50%;
}
}
}
}