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
| .nav {
| .custom-menu {
| .ant-menu-item,
| .ant-menu-submenu-title {
| font-size: 16px;
| height: 40px;
| line-height: 40px;
| }
|
| .ant-menu-submenu {
| .ant-menu-item {
| font-size: 16px;
| height: 40px;
| line-height: 40px;
| }
| }
|
| .custom-submenu {
| .ant-menu-submenu-title {
| &:hover {
| color: rgba(0, 0, 0, 0.65);
| background-color: transparent;
| }
| }
| }
| }
| }
|
|