You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.3 KiB
76 lines
1.3 KiB
@use './variables.scss' as variables; |
|
|
|
.avue-sidebar { |
|
width: variables.$sidebar_width; |
|
height: 100%; |
|
user-select: none; |
|
position: relative; |
|
background-color: #031527; |
|
transition: width .2s; |
|
box-sizing: border-box; |
|
box-shadow: 2px 0 6px rgba(0, 21, 41, .35); |
|
|
|
.el-scrollbar__wrap { |
|
overflow-x: hidden; |
|
} |
|
|
|
.avue-menu { |
|
height: calc(100% - #{variables.$top_height}); |
|
} |
|
|
|
&--tip { |
|
width: 90%; |
|
height: 140px; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
border-radius: 5px; |
|
position: absolute; |
|
top: 5px; |
|
left: 5%; |
|
color: #ccc; |
|
z-index: 2; |
|
text-align: center; |
|
font-size: 14px; |
|
background-color: rgba(0, 0, 0, .4); |
|
} |
|
|
|
.el-menu-item, .el-sub-menu__title { |
|
i { |
|
// margin-right: 5px; |
|
margin-right: 13px; |
|
} |
|
|
|
i, span { |
|
color: hsla(0, 0%, 100%, .7); |
|
} |
|
|
|
&:hover { |
|
background: transparent; |
|
|
|
i, span { |
|
color: #fff; |
|
} |
|
} |
|
|
|
&.is-active { |
|
&:before { |
|
content: ''; |
|
top: 0; |
|
left: 0; |
|
bottom: 0; |
|
width: 4px; |
|
// background: var(--el-color-primary); |
|
position: absolute; |
|
} |
|
|
|
background-color: rgba(0, 0, 0, .8); |
|
|
|
i, span { |
|
color: #fff; |
|
} |
|
|
|
} |
|
} |
|
|
|
}
|
|
|