blob: da4c017d396e389b634e11bf43c1da9a258b890d (
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
|
.onboard-header {
padding-top: 8px;
display: flex;
flex-direction: row;
justify-content: flex-end;
background-color: $tlv-light-gray;
margin-bottom: 2px;
@include box-shadow(0px 1px 3px 0 rgba(0, 0, 0, 0.2));
.expandable-input-top {
margin-right: 60px;
margin-left: auto;
}
.onboard-header-tabs {
display: flex;
flex-direction: row;
margin-left: 60px;
.onboard-header-tab {
@extend .body-1-medium;
margin-right: 40px;
cursor: pointer;
display: flex;
padding-bottom: 5px;
align-items: flex-end;
&.active {
color: $blue;
padding-bottom: 2px;
border-bottom: 3px solid $blue;
}
}
}
}
|