summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/generic/flash.scss
blob: 82eb50ad4be068473bac0507f6fc1a1aa75750b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.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;
  }
}