mirror of
https://github.com/Readarr/Readarr.git
synced 2026-02-02 10:11:29 -05:00
22 lines
281 B
CSS
22 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;
|
|
}
|