mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
28 lines
432 B
SCSS
28 lines
432 B
SCSS
@import "src/styles/variables";
|
|
|
|
.item {
|
|
@include row_shadow;
|
|
@include hover_opacity;
|
|
|
|
font: $font_14_medium;
|
|
line-height: 20px;
|
|
padding: $gap + 2px $gap $gap - 2px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
color: white;
|
|
align-items: stretch;
|
|
justify-content: center;
|
|
width: 100%;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.icon {
|
|
flex: 0 0 20px;
|
|
}
|
|
|
|
.text {
|
|
flex: 1;
|
|
text-align: left;
|
|
padding: 0 $gap;
|
|
white-space: nowrap;
|
|
}
|