24 lines
335 B
SCSS
24 lines
335 B
SCSS
a:focus, a:active {
|
|
outline:0 !important;
|
|
}
|
|
|
|
.link {
|
|
color: inherit;
|
|
transition: opacity 0.2s;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.link:hover {
|
|
text-decoration: none;
|
|
opacity: 0.8;
|
|
transition: opacity 0.2s;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.link.link-primary {
|
|
color: $primary-color;
|
|
}
|
|
|
|
.link.no-opacity:hover {
|
|
opacity: 1 !important;
|
|
}
|