From 326bdb73c590cb669af344cfdc4ee6f02bf1b0a8 Mon Sep 17 00:00:00 2001
From: Mr Ke <kelq@hugeinfo.com.cn>
Date: Wed, 27 May 2020 10:16:11 +0800
Subject: [PATCH] 链接指纹是杯页面
---
SunshineIns/src/conf/cover.scss | 66 ++++++++++++++++++++++++++-------
1 files changed, 52 insertions(+), 14 deletions(-)
diff --git a/SunshineIns/src/conf/cover.scss b/SunshineIns/src/conf/cover.scss
index a27835b..ff2cca4 100644
--- a/SunshineIns/src/conf/cover.scss
+++ b/SunshineIns/src/conf/cover.scss
@@ -4,6 +4,14 @@
background-color: $color-white-10;
}
+.ant-breadcrumb {
+ font-family: PingFangSC-Medium;
+ font-size: 16px;
+ color: #333333;
+ font-weight: bold;
+ margin-bottom: 20px;
+}
+
.am-picker-popup-item {
color: $color;
}
@@ -16,8 +24,8 @@
border-color: $color;
}
-.ant-layout-sider{
- background-color: #fff;
+.ant-layout-sider {
+ background-color: #fff;
}
body {
@@ -26,26 +34,42 @@
/**渐变***/
.ant-menu-item-selected {
- color: #FFFFFF;
+ color: #ffffff;
}
.ant-menu-item-selected > a,
.ant-menu-item-selected > a:hover {
- color: #FFFFFF;
+ color: #ffffff;
}
.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected {
- background: -webkit-linear-gradient(left, #1790FF , #33C3FF); /* Safari 5.1 - 6.0 */
- background: -o-linear-gradient(right, #1790FF, #33C3FF); /* Opera 11.1 - 12.0 */
- background: -moz-linear-gradient(right, #1790FF, #33C3FF); /* Firefox 3.6 - 15 */
- background: linear-gradient(to right, #1790FF , #33C3FF); /* 标准的语法(必须放在最后) */
+ background: -webkit-linear-gradient(
+ left,
+ #1790ff,
+ #33c3ff
+ ); /* Safari 5.1 - 6.0 */
+ background: -o-linear-gradient(
+ right,
+ #1790ff,
+ #33c3ff
+ ); /* Opera 11.1 - 12.0 */
+ background: -moz-linear-gradient(
+ right,
+ #1790ff,
+ #33c3ff
+ ); /* Firefox 3.6 - 15 */
+ background: linear-gradient(
+ to right,
+ #1790ff,
+ #33c3ff
+ ); /* 标准的语法(必须放在最后) */
}
-.ant-modal-header{
- background: #1790FF;
-}
+// .ant-modal-header {
+// background: #1790ff;
+// }
-.bf-content{
+.bf-content {
height: 300px;
}
-.card-container{
+.card-container {
padding: 20px;
}
.card-container > .ant-tabs-card > .ant-tabs-content {
@@ -69,4 +93,18 @@
.card-container > .ant-tabs-card > .ant-tabs-bar .ant-tabs-tab-active {
border-color: #fff;
background: #fff;
-}
\ No newline at end of file
+}
+
+// 隐藏滚动条
+* {
+ &::-webkit-scrollbar {
+ display: none;
+ }
+ -ms-overflow-style: none;
+ scrollbar-width: none;
+}
+
+.ant-layout-sider-children {
+ display: flex;
+ flex-direction: column;
+}
--
Gitblit v1.8.0