mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
11 lines
243 B
SCSS
11 lines
243 B
SCSS
.link {
|
|
cursor: pointer;
|
|
color: $linkFontColor;
|
|
@include transition(color .1s ease-out);
|
|
|
|
&:hover {
|
|
color: $linkHoverFontColor;
|
|
text-decoration: underline;
|
|
@include transition(color .1s ease-in);
|
|
}
|
|
} |