From ab8b9ed094d719c752af88bc6d382fc5feeb08ba Mon Sep 17 00:00:00 2001
From: Junjie <540245094@qq.com>
Date: 星期二, 06 八月 2024 08:06:35 +0800
Subject: [PATCH] #

---
 zy-asrs-admin/src/assets/main.css |   55 +++++++++++++++++++++++++++++++++++++++++++++++--------
 1 files changed, 47 insertions(+), 8 deletions(-)

diff --git a/zy-asrs-admin/src/assets/main.css b/zy-asrs-admin/src/assets/main.css
index e45447d..e877501 100644
--- a/zy-asrs-admin/src/assets/main.css
+++ b/zy-asrs-admin/src/assets/main.css
@@ -2,16 +2,39 @@
 
 .main {
   height: 100vh;
-  overflow: scroll;
+  overflow: hidden;
+}
+
+.main .main-sider {
+  overflow-x: hidden;
+  overflow-y: scroll;
+}
+ 
+.main .main-sider::-webkit-scrollbar {
+  width: 5px !important;
+}
+ 
+.main .main-sider::-webkit-scrollbar-track {
+  background: #f1f1f1;
+  border-radius: 10px;
+}
+ 
+.main .main-sider::-webkit-scrollbar-thumb {
+  background: #888;
+  border-radius: 10px;
+}
+ 
+.main .main-sider::-webkit-scrollbar-thumb:hover {
+  background: #555;
 }
 
 .trigger {
-  font-size: 18px;
+  font-size: 14px;
   line-height: 64px;
-  padding: 0 24px;
+  padding: 0 6px;
   cursor: pointer;
   transition: color 0.3s;
-  color: #000000;
+  color: #333333;
 }
 
 .trigger:hover {
@@ -23,7 +46,11 @@
 }
 
 .active:hover {
-  color: #000000 !important;
+  color: #333333 !important;
+}
+
+.triggerLarge {
+  font-size: 18px !important;
 }
 
 .logo {
@@ -41,6 +68,7 @@
 .header-top {
   display: flex;
   justify-content: space-between;
+  margin-bottom: 10px;
 }
 
 .header-top-left {
@@ -49,13 +77,13 @@
 
 .header-top-right {
   margin-right: 20px;
-  color: #000000;
+  color: #333333;
   cursor: pointer;
   user-select: none;
   flex: 4;
   display: flex;
   justify-content: flex-end;
-  font-size: 16px;
+  font-size: 14px;
 }
 
 .header-top-right>div {
@@ -66,7 +94,7 @@
   display: flex;
   justify-content: center;
   align-items: center;
-  color: #000000;
+  color: #333333;
   cursor: pointer;
   user-select: none;
 }
@@ -133,7 +161,18 @@
 
 .content-view {
   margin: 45px 16px;
+  margin-top: 60px;
   padding: 24px;
   background: #fff;
   min-height: 280px;
+}
+
+.form-block {
+  display: flex;
+  justify-content: space-between;
+  flex-wrap: wrap;
+}
+
+.form-block .ant-form-item {
+  width: 100%;
 }
\ No newline at end of file

--
Gitblit v1.9.1