From 2c2bc8614c8ea0ce386369eb4924da1e6aa052d1 Mon Sep 17 00:00:00 2001
From: husq <931347610@qq.com>
Date: Wed, 27 Sep 2023 09:35:57 +0800
Subject: [PATCH] 添加环境配置区分
---
src/styles/common.scss | 25 +++++++++++++++++++++++--
1 files changed, 23 insertions(+), 2 deletions(-)
diff --git a/src/styles/common.scss b/src/styles/common.scss
index eae2982..309b937 100644
--- a/src/styles/common.scss
+++ b/src/styles/common.scss
@@ -3,17 +3,38 @@
height: 100%;
overflow: hidden;
}
-
+.dis_opticy{
+ opacity: .25;
+}
+.white-color {
+ color: #fff;
+}
+.describe{
+ font-size: 12px;
+ color: hsla(0,0%,100%,.6);
+}
body {
background-color: #f7f9fa;
-webkit-font-smoothing: antialiased;
// Prevent font enlargement in horizontal screen
text-size-adjust: 100%;
- font-family: Roboto, sans-serif-medium, Arial, sans-serif;
+ font-family: sans-serif, Roboto, sans-serif-medium, Arial;
+ font-feature-settings: normal;
color: $main-text-color;
font-size: 14px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
+ ::-webkit-scrollbar {
+ width: 8px;
+ height: 8px;
+ background: transparent;
+ }
+
+ ::-webkit-scrollbar-thumb {
+ border-radius: 4px;
+ border: none;
+ background: rgb(89, 89, 89);
+ }
}
\ No newline at end of file
--
Gitblit v1.9.3