system-copyright-react/src/components/menu/menu-with-top-button.css

35 lines
558 B
CSS
Raw Normal View History

2024-03-12 18:53:51 +08:00
.menu-with-top-button {
padding: 15px;
}
.menu-with-top-button .top-button {
width: 100%;
}
.menu-with-top-button ul {
padding: 10px;
}
.menu-with-top-button ul li {
display: flex;
align-items: center;
padding: 5px;
cursor: pointer;
}
.menu-with-top-button ul li:hover {
background-color: var(--color-hover);
}
.menu-with-top-button ul li:last-child {
margin-bottom: 0;
}
.menu-with-top-button ul li .menu-icon {
width: 30px;
height: 30px;
}
.menu-with-top-button ul li .menu-name {
padding-left: 5px;
}