Readarr/frontend/src/Components/Page/Toolbar/PageToolbarButton.css
Qstick 180763da69 Fixed: Consistent icon position for toolbar buttons
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
2019-03-26 21:58:16 -04:00

33 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);
}