You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
894 B

4 years ago
// sidebar
4 years ago
$menuText:#ffffff;
4 years ago
$menuActiveText:#ffffff;
$subMenuActiveText:#ffffff; //https://github.com/ElemeFE/element/issues/12951
4 years ago
4 years ago
$menuBg:rgb(255, 255, 255,0);//#304156
$menuHover:rgba(242, 242, 242, .4);
$menuActiveBg:rgba(242, 242, 242, .4);
4 years ago
4 years ago
$subMenuBg:rgb(255, 255, 255,0);//#304156
$subMenuHover:rgba(242, 242, 242, .4);
$submenuActiveBg:rgba(242, 242, 242, .4);
4 years ago
$sideBarWidth: 210px;
4 years ago
$primaryColor: #1a1a5e;
4 years ago
// the :export directive is the magic sauce for webpack
// https://www.bluematador.com/blog/how-to-share-variables-between-js-and-sass
:export {
menuText: $menuText;
menuActiveText: $menuActiveText;
subMenuActiveText: $subMenuActiveText;
menuBg: $menuBg;
menuHover: $menuHover;
menuHover: $menuHover;
menuActiveBg: $menuActiveBg;
submenuActiveBg: $submenuActiveBg;
subMenuHover: $subMenuHover;
sideBarWidth: $sideBarWidth;
primaryColor:$primaryColor
}