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

banner.scss « framework « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6433b0c785574d38a44b8148139452793ec113cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
.banner-callout {
  display: flex;
  position: relative;
  flex-wrap: wrap;

  .banner-close {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 1;

    .dismiss-icon {
      color: $gl-text-color;
      font-size: $gl-font-size;
    }
  }

  .banner-graphic {
    margin: 20px auto;
  }

  &.banner-non-empty-state {
    border-bottom: 1px solid $border-color;
  }
}