gitlab-org--gitlab-foss/app/assets/stylesheets/framework/flash.scss
Dmitriy Zaporozhets bdd477a0f8
Re-organize GitLab css into 2 directories: framework and page specific css
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-10-12 15:00:04 +02: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;
}
}