gatsby-core-theme 35.0.6 → 35.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## [35.0.7](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v35.0.6...v35.0.7) (2024-07-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* qa fixes ([ed24307](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ed2430714cc4778624ef9403deaa91ec8f7b3325))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* Merge branch 'tm-4071-market-dropdown' into 'master' ([1eae8bb](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/1eae8bbf04314adf5cd35d8765d8b449bad5c66b))
|
|
10
|
+
* Merge branch 'master' into tm-4071-market-dropdown ([a1148fa](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/a1148fa995863a4de4a15d6d94c39edfd495b64d))
|
|
11
|
+
|
|
1
12
|
## [35.0.6](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v35.0.5...v35.0.6) (2024-07-26)
|
|
2
13
|
|
|
3
14
|
|
package/package.json
CHANGED
|
@@ -15,25 +15,29 @@
|
|
|
15
15
|
.dropdownInner{
|
|
16
16
|
cursor: pointer;
|
|
17
17
|
background-color: #F4F4F4;
|
|
18
|
-
padding: .4rem;
|
|
18
|
+
padding: .7rem 0.4rem;
|
|
19
19
|
|
|
20
20
|
@include flex-direction(row);
|
|
21
21
|
@include flex-align(center, center);
|
|
22
22
|
|
|
23
|
-
gap: .
|
|
23
|
+
gap: 1.1rem;
|
|
24
24
|
border-radius:.8rem;
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
26
|
+
@include min(tablet){
|
|
27
|
+
&::after{
|
|
28
|
+
@include arrow(rgba(27, 27, 28, 1), 0.8rem, down, false, translateY(-50%));
|
|
29
|
+
|
|
30
|
+
margin: .8rem .4rem .4rem;
|
|
31
|
+
}
|
|
30
32
|
}
|
|
31
33
|
}
|
|
32
34
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
+
@include min(tablet){
|
|
36
|
+
.dropdownActive::after{
|
|
37
|
+
@include arrow(rgba(27, 27, 28, 1), 0.8rem, up, false, translateY(50%));
|
|
35
38
|
|
|
36
|
-
|
|
39
|
+
margin: .4rem .4rem .8rem;
|
|
40
|
+
}
|
|
37
41
|
}
|
|
38
42
|
|
|
39
43
|
.dropdownOptions {
|
|
@@ -41,7 +45,7 @@
|
|
|
41
45
|
background-color: #fff;
|
|
42
46
|
top: 100%;
|
|
43
47
|
padding: 1.6rem;
|
|
44
|
-
border-radius: 0.
|
|
48
|
+
border-radius: 0.8rem;
|
|
45
49
|
gap: 0.6rem;
|
|
46
50
|
flex-direction: column;
|
|
47
51
|
height: 100dvh;
|
|
@@ -49,6 +53,8 @@
|
|
|
49
53
|
right: 0;
|
|
50
54
|
display: none !important;
|
|
51
55
|
box-shadow: 0 20px 24px -4px rgb(27 27 28 / 5%);
|
|
56
|
+
overflow-y: auto;
|
|
57
|
+
padding-bottom: 50dvh;
|
|
52
58
|
|
|
53
59
|
@include flex-align(start, start);
|
|
54
60
|
|
|
@@ -92,12 +98,13 @@
|
|
|
92
98
|
background-color: rgb(244 244 244 / 100%);
|
|
93
99
|
padding: .9rem .4rem;
|
|
94
100
|
border-radius: .8rem;
|
|
95
|
-
color: #
|
|
101
|
+
color: #1B1B1C;
|
|
96
102
|
text-transform: capitalize;
|
|
97
103
|
gap: .4rem;
|
|
104
|
+
font-weight: 400;
|
|
98
105
|
|
|
99
106
|
&:hover{
|
|
100
|
-
|
|
107
|
+
font-weight: 700;
|
|
101
108
|
}
|
|
102
109
|
|
|
103
110
|
> img {
|
|
@@ -108,7 +115,6 @@
|
|
|
108
115
|
> span {
|
|
109
116
|
font-size: 14px;
|
|
110
117
|
font-style: normal;
|
|
111
|
-
font-weight: 400;
|
|
112
118
|
line-height: 22px;
|
|
113
119
|
}
|
|
114
120
|
|