lidarr/frontend/src/Components/MonitorToggleButton.css
Bogdan 88f4c0c6cd Fix disabled style for monitor toggle button
(cherry picked from commit dde28cbd7e16b85f78d38c8dde7cf6bbb6119bb3)
2024-08-26 04:16:51 +03:00

11 lines
194 B
CSS

.toggleButton {
composes: button from '~Components/Link/IconButton.css';
padding: 0;
font-size: inherit;
&.isDisabled {
color: var(--disabledColor);
cursor: not-allowed;
}
}