aboutsummaryrefslogtreecommitdiff
path: root/src/components/tab_switcher/tab_switcher.scss
blob: 374a19c53de8b8205d2e9743996aa8d01ffd6009 (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
39
40
41
42
43
@import '../../_variables.scss';

.tab-switcher {
  .tabs {
    display: flex;
    position: relative;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    padding-top: 5px;

    &::after, &::before {
      display: block;
      content: '';
      flex: 1 1 auto;
    }

    .tab, &::after, &::before {
      border-bottom: 1px solid;
      border-bottom-color: $fallback--btn;
      border-bottom-color: var(--btn, $fallback--btn);
    }

    .tab {
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      padding: .3em 1em;

      &:not(.active) {
        border-bottom: 1px solid;
        border-bottom-color: $fallback--btn;
        border-bottom-color: var(--btn, $fallback--btn);
        z-index: 4;
      }

      &.active {
        background: transparent;
        border-bottom: none;
        z-index: 5;
      }
    }
  }
}