增加大块导航组件

This commit is contained in:
2023-04-18 09:29:22 +08:00
parent 6afae57896
commit 32fc9de906
8 changed files with 93 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
.ul-nav-block {
border-radius: 16px;
overflow: hidden;
background-color: #fff;
color: #333;
.item {
padding: 16px 32px;
display: flex;
align-items: center;
justify-content: flex-start;
cursor: pointer;
.item-icon {
margin-right: 16px;
}
&.current {
background-color: rgb(255, 91, 114);
color: #fff;
}
&:hover {
background-color: rgba(255, 91, 113, 0.772);
color: #fff;
}
}
}