mirror of
https://github.com/qdrant/landing_page.git
synced 2026-09-25 22:18:30 +02:00
36 lines
597 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|