word-games-theme 3.2.1 → 3.2.2
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6b1bb294719ebcca78e2f1c7768889b6ea4dd1e8d155e13695e6e0c0ee6955c8
|
|
4
|
+
data.tar.gz: 930a14edb611cde3f8544412b0ad4652c66b8c5f71f2effff4f545e3f89fa279
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 577706afda122de800e7444e7ba5db4518e4cadbfca19d82d13bd1066064352144135d2d5f06b44dfa513217f9073a76c7de60671f6790818c73d8625011ecd9
|
|
7
|
+
data.tar.gz: faed5fd30d75d28693e2fd3b2621c840a9652830609e1147c802e337dde78ee99577aa812bd2f3c0310ef189e351ec370b9cb6ad4b0bebb17a3a43f3d95ff39e
|
|
@@ -17,10 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
<style>
|
|
19
19
|
.main-header {
|
|
20
|
-
padding-top: 12vh;
|
|
21
20
|
margin: 0px !important;
|
|
22
|
-
height: auto;
|
|
23
|
-
/* padding-bottom: 50vh; */
|
|
24
21
|
background-image: radial-gradient(#e4e4f4 2px, transparent 2px);
|
|
25
22
|
background-size: 25px 25px;
|
|
26
23
|
background-color: unset !important;
|
|
@@ -30,8 +27,6 @@
|
|
|
30
27
|
<style>
|
|
31
28
|
.main-header {
|
|
32
29
|
margin: 0px !important;
|
|
33
|
-
height: 70vh;
|
|
34
|
-
/* padding-bottom: 50vh; */
|
|
35
30
|
background-image: radial-gradient(#e4e4f4 2px, transparent 2px);
|
|
36
31
|
background-size: 25px 25px;
|
|
37
32
|
background-color: unset !important;
|
|
@@ -881,7 +881,7 @@ summary::-webkit-details-marker {
|
|
|
881
881
|
|
|
882
882
|
.advancedFilterOptions {
|
|
883
883
|
display: block;
|
|
884
|
-
margin-top:
|
|
884
|
+
margin-top: 5px;
|
|
885
885
|
}
|
|
886
886
|
|
|
887
887
|
.filterShow {
|
|
@@ -1161,6 +1161,7 @@ summary::-webkit-details-marker {
|
|
|
1161
1161
|
}
|
|
1162
1162
|
|
|
1163
1163
|
|
|
1164
|
+
|
|
1164
1165
|
}
|
|
1165
1166
|
|
|
1166
1167
|
@media screen and (min-width: 1450px) {
|
|
@@ -177,14 +177,13 @@ input:-webkit-autofill:active {
|
|
|
177
177
|
}
|
|
178
178
|
|
|
179
179
|
.serachSection {
|
|
180
|
-
height: auto;
|
|
180
|
+
/* height: auto;
|
|
181
181
|
position: sticky;
|
|
182
182
|
top: 68px;
|
|
183
|
-
z-index: 99;
|
|
183
|
+
z-index: 99; */
|
|
184
184
|
box-shadow: 0px 0px 30px #ffffff;
|
|
185
|
-
background: white;
|
|
185
|
+
/* background: white; */
|
|
186
186
|
padding: 4px;
|
|
187
|
-
|
|
188
187
|
}
|
|
189
188
|
|
|
190
189
|
|
|
@@ -353,9 +353,9 @@ const getData = async (serachValue) => {
|
|
|
353
353
|
home_page_search_result = document.querySelector("#home_page_search_result")
|
|
354
354
|
homePageSearchResult = `/?search=${serachValue}&dictionary=Dictionary&prefix=&contains=&suffix=&exculde=&inculde=&length=`;
|
|
355
355
|
}
|
|
356
|
-
document.querySelector(".main-header").style.height = "auto"
|
|
356
|
+
// document.querySelector(".main-header").style.height = "auto"
|
|
357
357
|
document.querySelector(".main-header").style.background = "#fff"
|
|
358
|
-
document.querySelector(".heading-h2").
|
|
358
|
+
// document.querySelector(".heading-h2").remove()
|
|
359
359
|
document.querySelector(".sortingFilters").style.display = "none"
|
|
360
360
|
errorMsg.innerHTML = "";
|
|
361
361
|
wordCount.innerHTML = "";
|
|
@@ -368,7 +368,7 @@ const getData = async (serachValue) => {
|
|
|
368
368
|
type: "api",
|
|
369
369
|
serachValue: serachValue,
|
|
370
370
|
selectedDictionary: selectedDictionary,
|
|
371
|
-
endpoint: `
|
|
371
|
+
endpoint: `/.netlify/functions`
|
|
372
372
|
});
|
|
373
373
|
worker.onmessage = (event) => {
|
|
374
374
|
main.innerHTML = "";
|