mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-09-10 10:16:21 +02:00
49 lines
812 B
SCSS
49 lines
812 B
SCSS
@use "../../assets/scss/variables" as *;
|
|
@use "../../assets/scss/mixins" as *;
|
|
|
|
.sidebar {
|
|
width: 100%;
|
|
|
|
.inner {
|
|
@include padding(1, 0.75, 0);
|
|
position: relative;
|
|
}
|
|
}
|
|
|
|
@include breakpoint-sm {
|
|
.sidebar {
|
|
lost-column: 3/12;
|
|
|
|
.inner {
|
|
@include padding(1.25, 0.75, 0);
|
|
|
|
&:after {
|
|
background: $color-gray-border;
|
|
background: linear-gradient(
|
|
to bottom,
|
|
$color-gray-border 0%,
|
|
$color-gray-border 48%,
|
|
$color-white 100%
|
|
);
|
|
bottom: 0;
|
|
content: "";
|
|
height: 540px;
|
|
position: absolute;
|
|
right: -10px;
|
|
top: 30px;
|
|
width: 1px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@include breakpoint-md {
|
|
.sidebar {
|
|
lost-column: 1/4;
|
|
|
|
.inner {
|
|
@include padding-equal(1.5);
|
|
}
|
|
}
|
|
}
|