|
@@ -1,18 +1,38 @@
|
|
|
-
|
|
|
.el-menu-item {
|
|
|
- @apply my-0 mx-4 px-0 !important;
|
|
|
- }
|
|
|
+ @apply my-0 mx-4 px-0 !important;
|
|
|
+}
|
|
|
+
|
|
|
.topNav {
|
|
|
@apply bg-black/[.2]
|
|
|
/* background: rgba(0, 0, 0, 0.2); */
|
|
|
}
|
|
|
+
|
|
|
.logoWrap {
|
|
|
@apply w-28
|
|
|
}
|
|
|
+.navWrap {
|
|
|
|
|
|
+}
|
|
|
.activeItem {
|
|
|
- @apply text-white border-b-[3px] border-b-transparent hover:text-[#1FF0C9] hover:border-b-[3px] hover:border-b-[#1FF0C9]
|
|
|
+ color: #1FF0C9 !important;
|
|
|
+ font-weight: 600;
|
|
|
}
|
|
|
+
|
|
|
+.activeItem::after {
|
|
|
+ position: absolute;
|
|
|
+ content: "";
|
|
|
+ top: 95%;
|
|
|
+ left: 25%;
|
|
|
+ width: 50%;
|
|
|
+ height: 3px;
|
|
|
+ background-color: #1FF0C9;
|
|
|
+ z-index: 100;
|
|
|
+ transform: scaleX(1);
|
|
|
+ transform-origin: left;
|
|
|
+}
|
|
|
+
|
|
|
.itemCenter {
|
|
|
+ position: relative;
|
|
|
@apply text-lg h-full flex items-center box-border
|
|
|
+
|
|
|
}
|