WIP
This commit is contained in:
13
dist/app.css
vendored
13
dist/app.css
vendored
@@ -12536,12 +12536,16 @@ section.services-blocks .blocks {
|
||||
flex-direction: column;
|
||||
gap: 1.5rem;
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
section.services-blocks .blocks {
|
||||
flex-direction: row;
|
||||
}
|
||||
}
|
||||
section.services-blocks .block {
|
||||
position: relative;
|
||||
padding: 2rem 1.5rem;
|
||||
background-color: #075179;
|
||||
color: #fff;
|
||||
flex: 1 1 calc(50% - 0.75rem);
|
||||
}
|
||||
section.services-blocks .block svg {
|
||||
margin-bottom: 1rem;
|
||||
@@ -12561,7 +12565,14 @@ section.services-blocks .block:nth-of-type(even) svg {
|
||||
}
|
||||
section.services-blocks .block:first-of-type {
|
||||
background-color: #B9AF78;
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
section.services-blocks .block {
|
||||
flex: 1 1 calc(50% - 0.75rem);
|
||||
}
|
||||
section.services-blocks .block .block:first-of-type {
|
||||
flex: 1 1 100%;
|
||||
}
|
||||
}
|
||||
section.services-blocks .large-arrow {
|
||||
position: absolute;
|
||||
|
||||
2
dist/mix-manifest.json
vendored
2
dist/mix-manifest.json
vendored
@@ -1,4 +1,4 @@
|
||||
{
|
||||
"/app.js": "/app.js?id=ac271f1d4ead304b5ae143995cb9455e",
|
||||
"/app.css": "/app.css?id=d2d5d155f950e643ce7db448704b9bd9"
|
||||
"/app.css": "/app.css?id=ad9d8712074abd3bdff369f4b1278ecd"
|
||||
}
|
||||
|
||||
@@ -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,9 +47,18 @@ section.services-blocks {
|
||||
|
||||
&:first-of-type {
|
||||
background-color: $c-tan;
|
||||
}
|
||||
|
||||
@include media-breakpoint-up(lg) {
|
||||
flex: 1 1 calc(50% - 0.75rem);
|
||||
|
||||
.block {
|
||||
&:first-of-type {
|
||||
flex: 1 1 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.large-arrow {
|
||||
position: absolute;
|
||||
|
||||
Reference in New Issue
Block a user