Files
gitlabhq/app/assets/stylesheets/framework/flash.scss
T

28 lines
341 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;
}
}
.flash-pinned {
position: fixed;
top: 80px;
width: 80%;
}
.flash-raised {
z-index: 1000;
}