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

@keyframes spin {
    from {
        transform: scale(1) rotate(0deg);
    }

    to {
        transform: scale(1) rotate(360deg);
    }
}

@keyframes highlight {
    from {
        @include alpha-property(background, $yellow, .5);
    }

    to {
        background: none;
    }
}