52 lines
760 B
SCSS
52 lines
760 B
SCSS
@import '~styles/constants.scss';
|
|
|
|
.label {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
|
|
min-height: 43px;
|
|
margin: 0 5px;
|
|
color: $actionColor;
|
|
}
|
|
|
|
.menuContainer {
|
|
position: relative;
|
|
|
|
.menu {
|
|
position: absolute;
|
|
top: $headerHeight;
|
|
right: 0;
|
|
z-index: 1000;
|
|
border: 1px solid #eee;
|
|
background-color: #fff;
|
|
min-width: 150px;
|
|
}
|
|
}
|
|
|
|
.menuItem {
|
|
margin: 0;
|
|
padding: 5px 10px;
|
|
height: 32px;
|
|
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
border-left: 2px solid transparent;
|
|
|
|
span {
|
|
margin-top: 2px;
|
|
}
|
|
|
|
a {
|
|
color: $textColor;
|
|
text-decoration: none;
|
|
}
|
|
|
|
&:hover {
|
|
border-left: 2px solid $actionColor;
|
|
}
|
|
}
|