Lidarr/frontend/src/Components/Link/Link.css

25 lines
343 B
CSS
Raw Normal View History

2017-09-04 02:20:56 +00:00
.link {
margin: 0;
padding: 0;
outline: none;
border: 0;
background: none;
color: inherit;
text-align: inherit;
text-decoration: none;
cursor: pointer;
&:global(.isDisabled) {
2018-03-15 01:28:46 +00:00
cursor: default;
2017-09-04 02:20:56 +00:00
}
}
.to {
color: var(--linkColor);
2017-09-04 02:20:56 +00:00
&:hover {
color: var(--linkHoverColor);
2017-09-04 02:20:56 +00:00
text-decoration: underline;
}
}