48 lines
749 B
SCSS
48 lines
749 B
SCSS
@use '../../_css/queries.scss' as *;
|
|
|
|
$spacer-h: calc(var(--block-padding) / 2);
|
|
|
|
.callToAction {
|
|
padding-left: $spacer-h;
|
|
padding-right: $spacer-h;
|
|
position: relative;
|
|
background-color: var(--color-base-100);
|
|
color: var(--color-base-1000);
|
|
}
|
|
|
|
.invert {
|
|
background-color: var(--color-base-1000);
|
|
color: var(--color-base-0);
|
|
}
|
|
|
|
.wrap {
|
|
display: flex;
|
|
gap: $spacer-h;
|
|
align-items: center;
|
|
|
|
@include mid-break {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
}
|
|
|
|
.content {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.linkGroup {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
height: 100%;
|
|
flex-shrink: 0;
|
|
|
|
> * {
|
|
margin-bottom: calc(var(--base) / 2);
|
|
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|