Skip to content

Commit 895dbed

Browse files
committed
[RZA-250159]: fix build error
1 parent 6730d91 commit 895dbed

File tree

9 files changed

+27
-29
lines changed

9 files changed

+27
-29
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@recursivezero/abcd",
3-
"version": "3.2.2",
3+
"version": "3.2.3",
44
"description": "A website for our kids trial phase of abcdkbd.com",
55
"homepage": "https://abcdkbd.com",
66
"displayName": "abcd",

src/assets/styles/draw.css

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,6 @@
304304
}
305305

306306
@media (max-width: 480px) {
307-
308-
309307
.controls {
310308
right: 0;
311309
padding: 0.25rem;
@@ -336,4 +334,4 @@
336334

337335
.controls {
338336
z-index: 100;
339-
}
337+
}

src/assets/styles/footer.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@
274274
transition: transform 0.2s ease-in-out;
275275
}
276276

277-
.footer__nav--item[open]>summary .fa-chevron-down {
277+
.footer__nav--item[open] > summary .fa-chevron-down {
278278
transform: rotate(180deg);
279279
}
280280

@@ -291,4 +291,4 @@
291291
margin-top: 1rem;
292292
font-size: 0.85rem;
293293
}
294-
}
294+
}

src/assets/styles/setting.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,4 +147,4 @@
147147
transform: scale(1.05) rotate(45deg);
148148
}
149149
}
150-
}
150+
}

src/assets/styles/stories/stories.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,4 +504,4 @@
504504
width: 18px;
505505
height: 18px;
506506
}
507-
}
507+
}

src/assets/styles/varnmala/reader.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
padding: 0.5rem;
2929
}
3030

31-
.container__reader>.letter {
31+
.container__reader > .letter {
3232
width: 100%;
3333
box-sizing: border-box;
3434
display: flex;
@@ -186,12 +186,12 @@
186186
font-size: min(200rem, 70vw);
187187
}
188188

189-
.container__reader>.letter {
189+
.container__reader > .letter {
190190
justify-content: center;
191191
margin-left: auto;
192192
}
193193

194194
.mute-button {
195195
font-size: min(1.5rem, 6vw);
196196
}
197-
}
197+
}

src/components/Analytics.astro

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
---
2-
const GA_ID = "G-GV20S7JE8Q";
3-
---
4-
5-
<script async src={`https://www.googletagmanager.com/gtag/js?id=${GA_ID}`} is:inline></script>
6-
<script>
7-
window.dataLayer = window.dataLayer || [];
8-
function gtag() {
9-
{
10-
dataLayer.push(arguments);
11-
}
12-
}
13-
gtag("js", new Date());
14-
gtag("config", "{GA_ID}");
15-
</script>
1+
---
2+
const GA_ID = "G-GV20S7JE8Q";
3+
const gtagScript = `
4+
window.dataLayer = window.dataLayer || [];
5+
function gtag() { dataLayer.push(arguments); }
6+
gtag('js', new Date());
7+
gtag('config', '${GA_ID}');
8+
`;
9+
---
10+
11+
<script async src={`https://www.googletagmanager.com/gtag/js?id=${GA_ID}`}></script>
12+
<script is:inline>
13+
{
14+
gtagScript;
15+
}
16+
</script>

src/pages/poems.astro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,3 @@ const meta = {
4242
<PoemDialog />
4343
</div>
4444
</BaseLayout>
45-

0 commit comments

Comments
 (0)