17 lines
248 B
SCSS
17 lines
248 B
SCSS
.menu-item {
|
|
display: flex;
|
|
gap: 10px;
|
|
align-items: center;
|
|
padding: 10px;
|
|
cursor: pointer;
|
|
transition: background-color 0.1s;
|
|
|
|
&:hover {
|
|
background-color: var(--main-color_hover);
|
|
}
|
|
|
|
.icon {
|
|
|
|
}
|
|
}
|