-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_tabsNavLink.scss
More file actions
48 lines (39 loc) · 827 Bytes
/
_tabsNavLink.scss
File metadata and controls
48 lines (39 loc) · 827 Bytes
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
44
45
46
47
48
.tabsNavLink {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 16px;
font-weight: bold;
text-transform: uppercase;
color: #3f3f3f;
padding: 20px;
cursor: pointer;
text-decoration: none;
&:hover,
&:focus {
color: darken(#3f3f3f, 20);
}
}
.tabsNavLink--isActive {
border-bottom: 4px solid darken(#3f3f3f, 20);
& .tabsNavLink__icon {
transform: rotate(90deg);
transform-origin: center;
}
}
.tabsNavLink__icon {
transition: transform .35s ease-in-out;
& svg {
display: block;
fill: #cccccc;
}
}
// Vertical Layout
.tabs--isVert {
.tabsNavLink:not(:first-child) {
border-top: 1px solid #cccccc;
}
.tabsNavLink--isActive {
border-bottom: 0;
}
}