From fa71559c92ce8f7429971370ca4bd1139c903621 Mon Sep 17 00:00:00 2001
From: Mr Ke <kelq@hugeinfo.com.cn>
Date: Wed, 27 May 2020 11:16:05 +0800
Subject: [PATCH] oa+用户中心

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

diff --git a/src/style/reset.scss b/src/style/reset.scss
index b6fc7af..3ca5aea 100644
--- a/src/style/reset.scss
+++ b/src/style/reset.scss
@@ -2,6 +2,72 @@
   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: #ccc;
+}
+*::-webkit-scrollbar-track {
+  /*滚动条里面轨道*/
+  box-shadow: inset 0 0 5px #fff;
+  border-radius: 2.5px;
+  background: #fff;
+}
+
+.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-box-row {
+  display: flex;
+}
+
+.flex-1 {
+  flex: 1;
+  overflow-y: auto;
+}
+
+.align-center{
+  align-items: center;
+}
+
+.space-between {
+  justify-content: space-between;
+}
+
+.ant-modal-body {
+  padding: 5px 8px 15px 8px;
+}
+.ant-tabs-bar {
+  margin-bottom: 5px;
 }

--
Gitblit v1.8.0