24 lines
405 B
SCSS
24 lines
405 B
SCSS
.menu-item-wrapper {
|
|
width: 100%;
|
|
.menu-item {
|
|
display: flex;
|
|
padding: var(--spacing-md, 16px);
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
gap: var(--spacing-lg, 24px);
|
|
cursor: pointer;
|
|
|
|
> svg {
|
|
width: 24px;
|
|
height: 24px;
|
|
transition: all ease-in-out 0.1s;
|
|
}
|
|
}
|
|
|
|
.separator {
|
|
width: 100%;
|
|
height: 1px;
|
|
background-color: var(--separator-stroke-light, #d7dce0);
|
|
}
|
|
}
|