File size: 514 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
@use "../.../../../../css/queries.scss" as *;
$spacer-h: calc(var(--block-padding) / 2);
.callToAction {
padding-left: $spacer-h;
padding-right: $spacer-h;
}
.background--white {
background-color: var(--color-base-1000);
color: var(--color-base-0);
}
.richText {
:last-child {
margin-bottom: 0;
}
}
.linkGroup {
display: flex;
flex-direction: column;
justify-content: center;
height: 100%;
:last-child {
margin-bottom: 0;
}
@include mid-break {
margin-top: 20px;
}
}
|