-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_typography.scss
56 lines (49 loc) · 930 Bytes
/
_typography.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
55
56
.section-container {
text-align: center;
margin: 0 auto;
width: 100%;
height: 100vh;
scroll-behavior: smooth;
overflow: auto;
scroll-snap-type: y mandatory;
transition: all 700ms ease 0ms;
}
.issue {
width: 100%;
height: 100vh;
scroll-snap-align: start;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
&__number {
font-size: 1.8rem;
margin-bottom: 1.5rem;
}
&__store {
font-size: 1.5rem;
a {
text-decoration: none;
// color: $color-primary-6;
&:hover {
text-decoration: underline;
cursor: pointer;
}
}
}
a {
font-size: 1.5rem;
text-decoration: none;
// font-weight: $font-weight-sb;
// color: $color-primary-6;
&:hover {
text-decoration: underline;
}
}
}
.color-correction1 a {
color: #e568ac;
}
#selected-stores, .issue__purchase {
color: #fff;
}