From 8409c653e725ad975b589419ddb9177f3be1e9fb Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Wed, 15 Dec 2021 08:41:37 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.105:10010/r/school-web
---
src/styles/layout/pc.scss | 36 +++++++++++++++++++-----------------
1 files changed, 19 insertions(+), 17 deletions(-)
diff --git a/src/styles/layout/pc.scss b/src/styles/layout/pc.scss
index 088fe52..c0bb64a 100644
--- a/src/styles/layout/pc.scss
+++ b/src/styles/layout/pc.scss
@@ -51,25 +51,22 @@
.el-menu {
-
-
li {
- font-size: 18px;
+ font-size: 16px !important;
}
li.el-menu-item {
border: 0px !important;
-
}
li.el-menu-item.is-active {
border: 0px !important;
- background: #000 !important;
+ background: #3f51b5 !important;
}
li:hover {
border: 0px !important;
- background: #000 !important;
+ background: #3f51b5 !important;
}
}
}
@@ -83,6 +80,7 @@
.el-menu--horizontal {
.el-menu-item {
+ font-size: 12px !important;
text-align: center;
background: transparent !important;
@@ -100,22 +98,26 @@
min-width: 132px !important;
}
-.el-submenu__title i {
- color: #fff;
+.el-submenu__title {
+
+ font-size: 16px !important;
+
+ i {
+ color: #fff;
+ }
}
-
.dialog-fade-enter-active .el-dialog.way {
- animation: anim-open 1s;
+ animation: anim-open 1.5s;
}
.dialog-fade-leave-active .el-dialog.way {
- animation: anim-close 1s;
+ animation: anim-close 1.5s;
}
@keyframes dialog-fade-in {
0% {
- transform: scale(0.1) translate3d(100%, 0, 0);
+ transform: scale(0.1) translate3d(0, -100%, 0);
opacity: 0;
}
@@ -127,19 +129,19 @@
@keyframes dialog-fade-out {
0% {
- transform: translate3d(0, 0, 0) scale(1);
+ transform: scale(1) translate3d(0, 0, 0);
opacity: 1;
}
100% {
- transform: translate3d(100%, 0, 0) scale(0.1);
+ transform: scale(0.1) translate3d(0, -100%, 0);
opacity: 0;
}
}
@keyframes anim-open {
0% {
- transform: scale(0.1) translate3d(100%, 0, 0);
+ transform: scale(0.1) translate3d(0, -100%, 0);
opacity: 0;
}
@@ -151,12 +153,12 @@
@keyframes anim-close {
0% {
- transform: translate3d(0, 0, 0) scale(1);
+ transform: scale(1) translate3d(0, 0, 0);
opacity: 1;
}
100% {
- transform: translate3d(100%, 0, 0) scale(0.1);
+ transform: scale(0.1) translate3d(0, -100%, 0);
opacity: 0;
}
}
\ No newline at end of file
--
Gitblit v1.9.3