summaryrefslogtreecommitdiffstats
path: root/assets/css/scopes/_invisible-links.scss
blob: e4d149e04f8e27ec774d4431eb5a36a2fe3254e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
@include namespace('invisible-links') {
    @include scope(namespace()) {
        :link,
        :visited {
            color:           currentColor;
            text-decoration: none;

            &:hover {
                text-decoration: underline;
            }
        }
    }
}