Код: Выделить всё
//variables.scss
@use 'sass:meta';
$theme:light !default;
$style: (
light:(
theme-border-color: #eaebf1,
theme-hover-color: rgba(241,241,244,0.8),
),
dark:(
theme-border-color: red,
theme-hover-color: black,
)
);
Код: Выделить всё
//sidebar.scss
@forward '@/assets/style/variables.scss' with ($theme:light !default);
@use '@/assets/style/variables.scss' as *;
@use 'sass:map';
.menu-left {
width: 80px;
height: 100vh;
position: relative;
user-select: none;
border-right: 1px solid map.get(map.get($style , $theme), 'theme-border-color');
}

Подробнее здесь: https://stackoverflow.com/questions/798 ... n-css-prep
Мобильная версия