-
Notifications
You must be signed in to change notification settings - Fork 353
Expand file tree
/
Copy pathlibrary-hero.module.scss
More file actions
101 lines (84 loc) · 1.67 KB
/
library-hero.module.scss
File metadata and controls
101 lines (84 loc) · 1.67 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
@use "@/libs/theme/styles/variables" as *;
@use "@/libs/theme/styles/mixins" as *;
.container {
@include Container;
}
.content {
@include InnerContentFlex;
flex-direction: column;
align-items: center;
padding-top: 2.5rem;
padding-bottom: 3.5rem;
@media #{$breakpoint-dimension-xs} {
padding-top: 3.5rem;
padding-bottom: 3.5rem;
}
@media #{$breakpoint-dimension-md} {
padding-top: 4.5rem;
padding-bottom: 4.5rem;
}
}
.hero {
grid-column: 1 / -1;
display: flex;
flex-direction: column;
gap: 1.5rem;
width: 100%;
@media #{$breakpoint-dimension-xs} {
gap: 1rem;
}
@media #{$breakpoint-dimension-md} {
flex-direction: row;
align-items: center;
justify-content: space-between;
}
}
.heroTitle {
color: var(--color_fg_bold);
font-size: 2rem;
font-style: normal;
font-weight: 500;
line-height: 1.15;
letter-spacing: -0.8px;
@media #{$breakpoint-dimension-xs} {
font-size: 2.5rem;
line-height: 1.15;
}
}
.filter {
display: flex;
align-items: center;
gap: 0.5rem;
}
.label {
color: var(--color_fg_bold);
font-size: .875rem;
font-weight: 700;
line-height: 1.5rem;
letter-spacing: .1px;
}
.select__wrapper {
position: relative;
display: flex;
flex-direction: row;
}
.select {
display: flex;
width: 160px;
flex-direction: column;
gap: 0.75rem;
background: transparent;
color: var(--color_fg_bold);
font-variant-numeric: slashed-zero;
font-feature-settings:
"clig" off,
"liga" off;
font-size: 1rem;
line-height: 1.5rem;
letter-spacing: 0.2px;
padding: 0.75rem 1rem;
align-items: center;
align-self: stretch;
border-radius: 0.25rem;
appearance: none;
}