Files
landing_page/qdrant-landing/themes/qdrant-2024/assets/css/partials/_qdrant-cloud-features-link.scss
T

36 lines
597 B
SCSS

@use '../helpers/functions' as *;
.qdrant-cloud-features-link {
background-color: $neutral-94;
padding-bottom: $spacer * 2.5;
text-align: center;
&__content {
margin-bottom: $spacer;
color: $neutral-20;
}
@include media-breakpoint-up(lg) {
position: relative;
&:before,
&:after {
content: ('');
display: block;
position: absolute;
top: pxToRem(25);
height: pxToRem(1);
width: calc((100% - 820px) / 2);
background-color: $neutral-90;
}
&:before {
left: 0;
}
&:after {
right: 0;
}
}
}