1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 10:46:13 +02:00
Files
csslayout/styles/patterns/_menu.scss
Phuoc Nguyen e62dfdc670 feat: Menu
2022-09-21 16:38:25 +07:00

34 lines
515 B
SCSS

.menu {
display: flex;
flex-direction: column;
/* Border */
border: 1px solid #d1d5db;
border-radius: 0.25rem;
/* Demo */
width: 8rem;
}
.menu__item {
/* Center the content horizontally */
align-items: center;
display: flex;
height: 2rem;
padding: 0.25rem;
}
.menu__item:hover {
background: #e5e7eb;
}
.menu__hotkey {
/* Push the hot key to the right */
margin-left: auto;
}
.menu__divider {
border-bottom: 1px solid #d1d5db;
height: 1px;
}