This commit is contained in:
2025-06-02 16:32:53 -07:00
parent 8c2f94f7c4
commit a24357d9ad
3 changed files with 28 additions and 5 deletions

View File

@@ -12,6 +12,10 @@ section.services-blocks {
display: flex;
flex-direction: column;
gap: 1.5rem;
@include media-breakpoint-up(lg) {
flex-direction: row;
}
}
.block {
@@ -19,7 +23,6 @@ section.services-blocks {
padding: 2rem 1.5rem;
background-color: $c-lightNavy;
color: $c-white;
flex: 1 1 calc(50% - 0.75rem);
svg {
margin-bottom: 1rem;
@@ -44,7 +47,16 @@ section.services-blocks {
&:first-of-type {
background-color: $c-tan;
flex: 1 1 100%;
}
@include media-breakpoint-up(lg) {
flex: 1 1 calc(50% - 0.75rem);
.block {
&:first-of-type {
flex: 1 1 100%;
}
}
}
}