aboutsummaryrefslogtreecommitdiff
path: root/site/assets/scss/_navbar.scss
blob: 1ba779f93727f04e1b19c97e2d61588c8db62ce2 (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
38
.bd-navbar {
  padding: .625rem 0;
  background-color: $bd-purple-bright;

  @include media-breakpoint-down(lg) {
    .navbar-nav-scroll {
      width: 100%;

      .navbar-nav {
        margin: -.5rem 0;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
      }
    }
  }

  .navbar-nav {
    .nav-link {
      color: rgba($white, .85);

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

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

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