1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00
Files
Sonarr/frontend/src/Components/Link/Link.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

25 lines
343 B
CSS

.link {
margin: 0;
padding: 0;
outline: none;
border: 0;
background: none;
color: inherit;
text-align: inherit;
text-decoration: none;
cursor: pointer;
&:global(.isDisabled) {
cursor: default;
}
}
.to {
color: var(--linkColor);
&:hover {
color: var(--linkHoverColor);
text-decoration: underline;
}
}