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

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

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

.text-danger {
    color: desaturate($red, 20%);

    &:hover,
    &:focus {
        color: desaturate($red, 20%);
    }
}