You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/frontend/src/Components/Page/Toolbar/PageToolbarButton.css

33 lines
515 B

.toolbarButton {
composes: link from 'Components/Link/Link.css';
width: $toolbarButtonWidth;
text-align: center;
&:hover {
color: $toobarButtonHoverColor;
}
&.isDisabled {
color: $disabledColor;
}
}
.isDisabled {
color: $disabledColor;
}
.labelContainer {
display: flex;
align-items: center;
justify-content: center;
min-height: 16px;
}
.label {
padding: 0 3px;
color: $toolbarLabelColor;
font-size: $extraSmallFontSize;
line-height: calc($extraSmallFontSize + 1px);
}