@antv/dumi-theme-antv
Version:
AntV website theme based on dumi2.
47 lines (40 loc) • 703 B
text/less
.container {
background: #fff;
:global {
.ant-menu {
width: 16vw;
min-width: 200px;
height: 100%;
overflow-y: auto;
overflow-x: hidden;
}
.ant-menu-inline-collapsed{
width: 80px;
min-width: 80px;
}
}
}
.title {
width: 200px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.menuItem{
display: flex;
justify-content: space-between;
}
.iconWrapper{
display: inline-flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
margin-top: 10px;
border-radius: 50%;
transition: background-color 0.3s ease;
cursor: pointer;
&:hover{
background-color: #fbfcfd;
}
}