1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00
Files
Sonarr/frontend/src/Components/Page/Toolbar/PageToolbarButton.css
T
Qstick 2291f3e00e New: Native Theme Engine
Co-Authored-By: Zak Saunders <thezak48@users.noreply.github.com>
2022-08-07 15:24:38 -07:00

34 lines
556 B
CSS

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