We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9e5fc2 commit b139bc6Copy full SHA for b139bc6
src/pages/alphabets/[alphabet]/playground.astro
@@ -70,6 +70,7 @@ const currentCategory = alphabetData[alphabet as keyof AlphabetsData];
70
71
// Animation handling to spelling
72
spellDiv.classList.remove("animation");
73
+ void spellDiv.offsetWidth;
74
spellDiv.classList.add("animation");
75
76
if (info.description && info.description.trim() !== "") {
@@ -79,6 +80,7 @@ const currentCategory = alphabetData[alphabet as keyof AlphabetsData];
79
80
81
// Animation handling for description
82
descriptionDiv.classList.remove("animation");
83
+ void descriptionDiv.offsetWidth;
84
descriptionDiv.classList.add("animation");
85
} else {
86
0 commit comments