mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-20 18:16:45 +10:00
28 lines
341 B
SCSS
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;
|
|
}
|