mirror of
https://github.com/qdrant/landing_page.git
synced 2026-09-25 22:18:30 +02:00
75 lines
1.3 KiB
SCSS
75 lines
1.3 KiB
SCSS
@use '../helpers/functions' as *;
|
|
|
|
.enterprise-benefits {
|
|
background-color: $neutral-94;
|
|
|
|
padding-top: $spacer * 4;
|
|
padding-bottom: $spacer * 4;
|
|
|
|
&__title {
|
|
margin-bottom: $spacer * 2.5;
|
|
font-size: $spacer * 2;
|
|
line-height: pxToRem(38);
|
|
color: $neutral-20;
|
|
}
|
|
|
|
&__cards {
|
|
gap: $spacer * 2;
|
|
}
|
|
|
|
&__card {
|
|
&-info {
|
|
justify-content: flex-start;
|
|
padding-top: $spacer * 2;
|
|
padding-bottom: $spacer * 2;
|
|
}
|
|
|
|
&-icon {
|
|
height: $spacer * 1.5;
|
|
width: $spacer * 1.5;
|
|
margin-bottom: $spacer;
|
|
}
|
|
|
|
&-title {
|
|
font-size: $spacer * 1.5;
|
|
line-height: pxToRem(34);
|
|
margin-bottom: $spacer;
|
|
color: $neutral-20;
|
|
}
|
|
|
|
&-description {
|
|
font-size: pxToRem(18);
|
|
line-height: pxToRem(27);
|
|
margin-bottom: 0;
|
|
color: $neutral-30;
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-up(xl) {
|
|
padding-top: $spacer * 7.5;
|
|
padding-bottom: $spacer * 5;
|
|
|
|
&__title {
|
|
margin-bottom: $spacer * 4;
|
|
font-size: $spacer * 3;
|
|
line-height: pxToRem(57);
|
|
text-align: center;
|
|
}
|
|
|
|
&__cards {
|
|
justify-content: space-between;
|
|
column-gap: 0;
|
|
|
|
& > div {
|
|
width: calc(50% - 3px);
|
|
}
|
|
}
|
|
|
|
&__card {
|
|
&-info {
|
|
padding-bottom: $spacer * 3;
|
|
}
|
|
}
|
|
}
|
|
}
|