WholeProcessPlatform/frontend/src/styles/variables.module.scss

18 lines
536 B
SCSS
Raw Normal View History

2026-03-27 14:50:35 +08:00
$main-menu-color: #fff;
$main-menu-color-active: #00e6fc;
$main-menu-bg-color-active: #003e6e;
2026-03-25 10:02:19 +08:00
2026-03-27 14:50:35 +08:00
$layout-header-height: 60px;
$locationbar-height: 50px;
2026-03-25 10:02:19 +08:00
// the :export directive is the magic sauce for webpack
// https://www.bluematador.com/blog/how-to-share-variables-between-js-and-sass
:export {
2026-03-27 14:50:35 +08:00
main-menu-color: $main-menu-color;
main-menu-color-active: $main-menu-color-active;
main-menu-bg-color-active: $main-menu-bg-color-active;
layout-header-height: $layout-header-height;
locationbar-height: $locationbar-height;
2026-03-25 10:02:19 +08:00
}