всем, доброго дня суток, вопросик есть по Sass
&__burger {
position: absolute;
right: 0;
top: 0.5rem;
width: 28px;
height: 3px;
background: set-text-color($primary-color);
@include transition-ease;
&::before {
content : '';
position: absolute;
top: -8px;
width: 28px;
height: 3px;
background: set-text-color($primary-color);
@include transition-ease;
}
&::after {
content : '';
position: absolute;
top: 8px;
width: 28px;
height: 3px;
background: set-text-color($primary-color);
@include transition-ease;
}
}