summaryrefslogtreecommitdiffstats
path: root/webapp/sass/components/_links.scss
blob: f31008b4f8f691399f4e0d0255520d0db3a32fc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@charset 'UTF-8';

a {
    cursor: pointer;
    text-decoration: none;
    word-break: break-word;
    color: $color--primary;
}

a:focus,
a:hover {
    color: $color--primary--hover;
}

.text-danger,
a.text-danger {
    color: #e05f5d;

    &:hover,
    &:focus {
        color: #e05f5d;
    }
}