|
|
@@ -185,6 +185,12 @@ const toggleProducts = () => {
|
|
|
}
|
|
|
|
|
|
.nav-item-wrapper {
|
|
|
+ border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
|
|
+
|
|
|
+ .nav-item {
|
|
|
+ border-bottom: none;
|
|
|
+ }
|
|
|
+
|
|
|
&:last-of-type {
|
|
|
border-bottom: none;
|
|
|
}
|
|
|
@@ -207,30 +213,36 @@ const toggleProducts = () => {
|
|
|
}
|
|
|
|
|
|
.dropdown-item {
|
|
|
- padding: 12px;
|
|
|
+ padding: 8px 10px 8px 24px;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
- color: #FFF;
|
|
|
+ color: #bdbdbd;
|
|
|
text-decoration: none;
|
|
|
font-size: 14px;
|
|
|
- transition: background 0.2s;
|
|
|
+ transition: color 0.2s;
|
|
|
gap: 12px;
|
|
|
white-space: nowrap;
|
|
|
|
|
|
&:hover {
|
|
|
- background: rgba(255, 255, 255, 0.1);
|
|
|
+ background: transparent;
|
|
|
+ color: #ffffff;
|
|
|
}
|
|
|
|
|
|
.item-img {
|
|
|
width: 20px;
|
|
|
height: 20px;
|
|
|
flex-shrink: 0;
|
|
|
+ opacity: 0.8;
|
|
|
+ }
|
|
|
+
|
|
|
+ &:hover .item-img {
|
|
|
+ opacity: 1;
|
|
|
}
|
|
|
|
|
|
p {
|
|
|
- color: #FFF;
|
|
|
+ color: inherit;
|
|
|
font-size: 14px;
|
|
|
- font-weight: 500;
|
|
|
+ font-weight: 400;
|
|
|
margin: 0;
|
|
|
white-space: nowrap;
|
|
|
}
|