aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/css/itcss/components/tab-bar.scss
blob: f8d3c4d7e6180dc337db6a0618315b8793015765 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.tab-bar {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}

.tab-bar__tab {
  min-width: 0;
  flex: 0 0 auto;
  padding: 15px 25px;
  border-bottom: 1px solid #f0f0f0;
  box-sizing: border-box;
  font-size: 18px;
}

.tab-bar__tab--active {
  border-color: $black;
}

.tab-bar__grow-tab {
  flex-grow: 1;
}