-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththe-guide.scss
More file actions
49 lines (48 loc) · 1.28 KB
/
the-guide.scss
File metadata and controls
49 lines (48 loc) · 1.28 KB
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
.tcs-the-guide{
&__nav{
overflow: auto;
white-space: nowrap;
height: 59px;
.guide-title{
display: inline-block;
}
.option-container{
display: inline-block;
border-style: none;
background-color: $white;
color: $black;
}
.guide-divider{
display: inline-block;
width: 0;
height: 40px;
border-left: 1px solid #ccc;
border-right: 1px solid #ccc;
}
}
@include media-breakpoint-up(lg) {
&__nav{
height: 100px;
.guide-title{
color: $gray;
font-family: $lora-italic;
}
.option-container{
border-style: none;
background-color: $white;
color: $primary;
.guide-divider{
display: inline-block;
width: 0;
height: 60px;
border-left: 1px solid #ccc;
border-right: 1px solid #ccc;
}
.guide-icon{
margin-bottom: 7px;
width: 25px;
}
}
}
}
}