debian-mirror-gitlab/app/assets/stylesheets/generic/flash.scss

18 lines
240 B
SCSS
Raw Normal View History

2014-09-02 18:07:02 +05:30
.flash-container {
cursor: pointer;
margin: 0;
font-size: 14px;
width: 100%;
z-index: 100;
.flash-notice {
2015-04-26 12:48:37 +05:30
@extend .alert;
@extend .alert-info;
2014-09-02 18:07:02 +05:30
}
.flash-alert {
2015-04-26 12:48:37 +05:30
@extend .alert;
@extend .alert-danger;
2014-09-02 18:07:02 +05:30
}
}