ebike-plus-ui/src/style/index.scss

34 lines
624 B
SCSS
Raw Normal View History

2024-04-29 16:02:59 +08:00
@import "./global-theme.scss";
@import "./global-transition.scss";
@import "./global-style.scss";
@import "./loading-page.scss";
2024-05-19 13:08:10 +08:00
@import "./card-animation.scss";
2024-05-26 16:13:45 +08:00
@import "./media/media.scss";
2024-04-29 16:02:59 +08:00
* {
margin: 0;
padding: 0;
}
html,
body,
#app {
margin: 0;
padding: 0;
2024-05-26 17:33:51 +08:00
overflow: hidden;
2024-04-29 16:02:59 +08:00
}
html {
font-size: 14px;
}
#app {
overflow: hidden;
}
2024-05-01 23:56:53 +08:00
// 设置全局颜色-关联黑暗模式
2024-05-02 11:25:38 +08:00
// 全局取一级容器背景色$color-bg-2main窗口取边框色浅色$color-border-1
2024-05-01 23:56:53 +08:00
body {
2024-05-02 11:18:36 +08:00
background: $color-bg-2; // body背景颜色
2024-05-02 11:25:38 +08:00
color: $color-text-1; // 整体文字的颜色
2024-05-01 23:56:53 +08:00
}