gitlab-org--gitlab-foss/app/assets/stylesheets/framework/flash.scss
Grzegorz Bizon d1211e0ada Fix award-emojis alert flash message
This adds a new feature to `Flash` that allows to pin it after a
specified selector. This removes a fixed position from such award-emoji
alert, and makes it responsive by design of selector that this alert is
pinned to.

Closes #3996
2015-12-11 13:50:14 +01:00

17 lines
240 B
SCSS

.flash-container {
cursor: pointer;
margin: 0;
font-size: 14px;
width: 100%;
z-index: 100;
.flash-notice {
@extend .alert;
@extend .alert-info;
}
.flash-alert {
@extend .alert;
@extend .alert-danger;
}
}