From ff30a564164c47b4acc51c9c2022b1faca166cc3 Mon Sep 17 00:00:00 2001 From: Mr Ke <kelq@hugeinfo.com.cn> Date: Wed, 27 May 2020 11:44:03 +0800 Subject: [PATCH] 修复初始状态导致的页面空白问题 --- src/style/reset.scss | 29 +++++++++++++++++++++++------ 1 files changed, 23 insertions(+), 6 deletions(-) diff --git a/src/style/reset.scss b/src/style/reset.scss index f77e00a..3ca5aea 100644 --- a/src/style/reset.scss +++ b/src/style/reset.scss @@ -19,13 +19,13 @@ /*滚动条里面小方块*/ border-radius: 2.5px; box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); - background: #848484; + background: #ccc; } *::-webkit-scrollbar-track { /*滚动条里面轨道*/ - box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); + box-shadow: inset 0 0 5px #fff; border-radius: 2.5px; - background: #ededed; + background: #fff; } .ant-layout { @@ -40,10 +40,16 @@ flex-direction: column; } +// 弹性盒 -- 纵向 .flex-box-column { display: flex; flex-direction: column; height: 100%; +} + +// 弹性盒 -- 纵向 +.flex-box-row { + display: flex; } .flex-1 { @@ -51,6 +57,17 @@ overflow-y: auto; } -a:visited { - color: #559DE6; /*已访问的链接颜色*/ -} \ No newline at end of file +.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