summaryrefslogtreecommitdiff
path: root/assets/sass/_icon.sass
blob: e9ccbe4314ccd07d55bc707c9c5dcee2afbe81ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@import variables

.icon-success
  color: icon-color('success')

.icon-error
  color: icon-color('error')

.icon-fade-out
  opacity: 1
  animation: icon-fadeout 5s linear forwards

@keyframes icon-fadeout
  0%
    opacity: 1
  100%
    opacity: 0