mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-07 08:09:53 +01:00
24 lines
331 B
CSS
24 lines
331 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: $linkColor;
|
|
|
|
&:hover {
|
|
color: $linkHoverColor;
|
|
text-decoration: underline;
|
|
}
|
|
}
|