blob: f97641cbe302dc8d4bc155faf3fd07a79f30408e (
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
|
.onboard-header {
padding-top: 8px;
display: flex;
flex-direction: row;
justify-content: flex-end;
background-color: $tlv-light-gray;
margin-bottom: 2px;
padding-left: 60px;
padding-right: 40px;
@include box-shadow(0px 1px 3px 0 rgba(0, 0, 0, 0.2));
.expandable-input-top {
margin-right: 20px;
margin-left: auto;
}
.onboard-header-tabs {
display: flex;
flex-direction: row;
.onboard-header-tab {
@extend .body-1-semibold;
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;
}
}
}
}
|