1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-16 21:15:33 -04:00
Files
Radarr/frontend/src/Components/Page/Toolbar/PageToolbarButton.css
2019-06-11 22:07:34 -04:00

34 lines
532 B
CSS

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