1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-29 18:15:37 -04:00
Files
Radarr/frontend/src/Components/Link/Link.css
2019-06-11 22:06:43 -04:00

25 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;
}
}