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

brand_logo.scss « framework « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1bc1ef797a703061c29466f4c2b2f94c253f9b6a (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
26
27
28
29
$brand-logo-light-background: #e0dfe5;
$brand-logo-dark-background: #53515b;

.brand-logo {
  display: inline-block;
  @include gl-rounded-base;
  @include gl-p-2;
  @include gl-bg-transparent;
  @include gl-border-none;

  .tanuki-logo {
    @include gl-vertical-align-middle;
  }

  &:focus,
  &:active {
    @include gl-focus;
  }

  &:hover,
  &:focus,
  &:active {
    background-color: $brand-logo-light-background;

    .gl-dark & {
      background-color: $brand-logo-dark-background;
    }
  }
}