mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-20 21:55:03 -04:00
850bfdcf82
Co-Authored-By: Zak Saunders <1936903+thezak48@users.noreply.github.com>
25 lines
343 B
CSS
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;
|
|
}
|
|
}
|