summaryrefslogtreecommitdiffstats
path: root/src/scopes/_invisible-links.scss
blob: 71dd9da392e358dea4921f63600c92fea341aba1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@use 'iro-sass/src/index' as iro;

@include iro.props-namespace('invisible-links') {
    @include iro.bem-scope(iro.props-namespace()) {
        :link,
        :visited {
            color:           currentColor;
            text-decoration: none;

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