From f9e9df1e43014e67580ad03dc86854a55673403d Mon Sep 17 00:00:00 2001
From: liuwh <hugeinfo123>
Date: Thu, 30 Apr 2020 17:38:23 +0800
Subject: [PATCH] 爬虫词条管理
---
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