42 lines
626 B
SCSS
42 lines
626 B
SCSS
@import '../../utils/constants.scss';
|
|
|
|
.label {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
|
|
min-height: 43px;
|
|
padding: 0 0.5rem;
|
|
color: $linkColor;
|
|
}
|
|
|
|
.menuContainer {
|
|
position: relative;
|
|
|
|
.menu {
|
|
position: absolute;
|
|
top: $headerHeight;
|
|
right: 0;
|
|
z-index: 1000;
|
|
border: 1px solid #eee;
|
|
min-width: 150px;
|
|
padding: 5px 0;
|
|
}
|
|
}
|
|
|
|
.menuItem {
|
|
margin: 0;
|
|
padding: 5px 10px;
|
|
height: 24px;
|
|
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
|
|
a {
|
|
color: $textColor;
|
|
text-decoration: none;
|
|
}
|
|
} |