sonarr/frontend/src/Components/Menu/MenuButton.css
2019-07-22 10:43:40 -07:00

21 lines
281 B
CSS

.menuButton {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
&::after {
margin-left: 5px;
content: "\25BE";
}
&:hover {
color: $toobarButtonHoverColor;
}
}
.isDisabled {
color: $disabledColor;
pointer-events: none;
}