ebike-plus-ui/src/style/index.scss
2024-07-10 23:58:46 +08:00

35 lines
662 B
SCSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@import "@/style/global-theme.scss";
@import "@/style/global-transition.scss";
@import "@/style/global-style.scss";
@import "@/style/loading-page.scss";
@import "@/style/card-animation.scss";
@import "@/style/media/media.scss";
* {
margin: 0;
padding: 0;
}
html,
body,
#app {
margin: 0;
padding: 0;
overflow: hidden;
}
html {
font-size: 14px;
}
#app {
overflow: hidden;
}
// 设置全局颜色-关联黑暗模式
// 全局取一级容器背景色$color-bg-2main窗口取边框色浅色$color-border-1
body {
background: $color-bg-2; // body背景颜色
color: $color-text-1; // 整体文字的颜色
}