-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_sub_nav.scss
54 lines (46 loc) · 999 Bytes
/
_sub_nav.scss
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
49
50
51
52
53
54
.sub-nav__nav-bar {
border-bottom: 1px solid $color-grey-E;
background-color: $color-background-content;
min-height: 25px;
@include media-query-smaller-than($tablet-breakpoint) {
@include inverse;
border: none;
}
position: relative;
}
.sub-nav__left-nav-button {
float: left;
padding-left: 1rem;
}
.sub-nav__middle-nav-button {
text-align: center;
clear: both;
@include media-query($tablet-breakpoint) {
height: 0;
transform: translate(0, -23px);
}
}
.sub-nav__right-nav-button {
float: right;
padding-right: 1rem;
}
.sub-nav__left-nav-button,
.sub-nav__middle-nav-button,
.sub-nav__right-nav-button {
@include media-query-smaller-than($tablet-breakpoint) {
float: none;
clear: both;
margin: 0;
padding: 0;
height: 25px;
border-bottom: 1px solid $color-grey-E;
text-align: center;
text-transform: uppercase;
position: relative;
left: 0%;
}
}
.sub_nav__ghost_spacer {
height: 1.5rem;
float: right;
}