Files
outline/src/components/DropdownMenu/DropdownMenu.scss
2016-06-02 22:04:33 -07:00

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;
}
}