1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-20 21:55:03 -04:00
Files
Radarr/frontend/src/Components/Link/Link.css
T
2022-11-20 11:49:50 -06: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;
}
}