From 75fa1bb87cf216dc4525d1a427924de464b03e80 Mon Sep 17 00:00:00 2001
From: Mr Ke <kelq@hugeinfo.com.cn>
Date: Tue, 14 Apr 2020 10:33:39 +0800
Subject: [PATCH] 修稿favicon、修改bug

---
 src/style/reset.scss |   52 ++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 50 insertions(+), 2 deletions(-)

diff --git a/src/style/reset.scss b/src/style/reset.scss
index 791988d..f77e00a 100644
--- a/src/style/reset.scss
+++ b/src/style/reset.scss
@@ -2,7 +2,55 @@
   margin-bottom: 20px;
 }
 
-.ant-layout-sider-trigger{
-  background: #CC4E45;
+.ant-layout-sider-trigger {
+  background: #cc4e45;
 }
 
+.ant-layout-sider {
+  background-color: #fff !important;
+}
+
+*::-webkit-scrollbar {
+  /*滚动条整体样式*/
+  width: 5px; /*高宽分别对应横竖滚动条的尺寸*/
+  height: 1px;
+}
+*::-webkit-scrollbar-thumb {
+  /*滚动条里面小方块*/
+  border-radius: 2.5px;
+  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
+  background: #848484;
+}
+*::-webkit-scrollbar-track {
+  /*滚动条里面轨道*/
+  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
+  border-radius: 2.5px;
+  background: #ededed;
+}
+
+.ant-layout {
+  height: 100%;
+  display: flex;
+  flex-direction: column;
+}
+
+.ant-layout-content {
+  flex: 1;
+  display: flex;
+  flex-direction: column;
+}
+
+.flex-box-column {
+  display: flex;
+  flex-direction: column;
+  height: 100%;
+}
+
+.flex-1 {
+  flex: 1;
+  overflow-y: auto;
+}
+
+a:visited {
+  color: #559DE6; /*已访问的链接颜色*/
+}
\ No newline at end of file

--
Gitblit v1.8.0