Welcome to mirror list, hosted at ThFree Co, Russian Federation.

flash.scss « generic « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
  }
}