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

_navbar.scss « scss « assets « docs - github.com/twbs/icons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d814117de8b0b52d8591d702545061625910cd9 (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
30
31
32
33
34
35
36
37
.bd-navbar {
  padding: .75rem 0;
  background-color: $bd-purple-bright;

  .navbar-toggler {
    padding: 0;
    border: 0;

    .bi {
      width: 2rem;
      fill: currentcolor;
    }
  }

  .navbar-nav {
    .nav-link {
      padding-right: $spacer / 4;
      padding-left: $spacer / 4;
      color: rgba($white, .85);

      &:hover,
      &:focus {
        color: $white;
      }

      &.active {
        font-weight: 600;
        color: $white;
      }
    }
  }

  .navbar-nav-svg {
    width: 1rem;
    height: 1rem;
  }
}