-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy pathnav.component.scss
More file actions
102 lines (86 loc) · 1.92 KB
/
Copy pathnav.component.scss
File metadata and controls
102 lines (86 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
.nav {
display: flex;
justify-content: space-between;
background-color: var(--el-nav-bg-color);
font-weight: 400;
padding-bottom: 1px;
.ant-menu-horizontal > .ant-menu-submenu {
top: 0
}
.logo-item {
height: 30px;
width: 60px;
padding: 0 8px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
a {
display: flex;
align-items: center;
height: 100%;
padding: 0;
}
img {
display: block;
max-height: 100%;
max-width: 100%;
height: 100%;
width: auto;
object-fit: contain;
object-position: left center;
}
}
.nav-main {
display: flex;
align-items: center;
background-color: var(--el-nav-bg-color);
color: var(--el-text-color-light);
font-size: 13px;
::ng-deep {
.ant-menu-submenu-title {
color: var(--el-text-color-light);
font-weight: 300;
padding: 0 16px;
&:hover {
color: white;
}
}
.ant-menu-submenu-active, .ant-menu-submenu-open {
background: rgba(0, 0, 0, 0.6);
}
.ant-menu-submenu-horizontal.ant-menu-submenu {
padding: 0;
}
}
li, .dropdown {
height: 30px;
line-height: 30px;
padding: 0;
}
}
.nav-right {
display: flex;
align-items: center;
color: var(--el-text-color-light);
.chat-trigger {
display: flex;
align-items: center;
gap: 5px;
width: 115px;
height: 25px;
margin-right: 10px;
padding: 0 10px;
border-radius: 50px;
border: 1px solid var(--el-divider-border-color);
background-color: var(--el-nav-bg-color);
color: var(--el-text-color-light);
cursor: pointer;
transition: background-color 0.3s ease;
&:hover {
color: white;
background-color: var(--el-dropdown-selected-bg-color);
}
}
}
}