Don't place pure styling on top-level files (those that don't begin with underscore). Instead, import them as individual files.
22 lines
278 B
Sass
22 lines
278 B
Sass
#status-bar
|
|
opacity: 0
|
|
transition: all 250ms ease-in-out
|
|
|
|
i
|
|
margin-right: 5px
|
|
|
|
&.info
|
|
color: $color-info
|
|
&.error
|
|
color: $color-danger
|
|
&.warning
|
|
color: $color-warning
|
|
&.success
|
|
color: $color-success
|
|
&.default
|
|
color: $color-text-light
|
|
|
|
&.active
|
|
opacity: 1
|
|
|