From 1386b9fff21abc8f611c2a6c199581ea67efe315 Mon Sep 17 00:00:00 2001 From: Mr Ke <kelq@hugeinfo.com.cn> Date: Sun, 26 Apr 2020 16:40:55 +0800 Subject: [PATCH] 修复bug --- src/style/reset.scss | 23 ++++++++++++++++++++--- 1 files changed, 20 insertions(+), 3 deletions(-) diff --git a/src/style/reset.scss b/src/style/reset.scss index f77e00a..0758323 100644 --- a/src/style/reset.scss +++ b/src/style/reset.scss @@ -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