Sha256: 5947c450f04ce46fa997529482ee773288018dbe950ab5feb02fa5946a0f15fe
Contents?: true
Size: 1.02 KB
Versions: 14
Compression:
Stored size: 1.02 KB
Contents
.flash { @include position(fixed, 70px null null null); background-color: $white; border-radius: $flash-border-radius; box-shadow: $flash-box-shadow; display: flex; overflow: hidden; transition: 0.7s linear; z-index: 9999; &--shown { // sass-lint:disable no-important right: 25px !important; // sass-lint:enable no-important transition: 0.4s linear; } &__icon { @include padding(11px 8px); display: flex; > svg { @include size(18px); fill: $white; } &--success, &--notice { background-color: $flash-success; } &--info { background-color: $flash-info; } &--warning { background-color: $flash-warning; } &--error { background-color: $flash-error; } } &__message { @include padding(10px 15px); box-sizing: border-box; color: $flash-color; } &__close { @include padding(10px 15px); cursor: pointer; > svg { @include size(8px); fill: $flash-color; } } }
Version data entries
14 entries across 14 versions & 1 rubygems