Fix example button
Browse files
docs/src/components/Examples.astro
CHANGED
@@ -32,6 +32,7 @@ import { ExampleButton } from "./ExampleButton";
|
|
32 |
|
33 |
function markDone(btn) {
|
34 |
btn.classList.add("bg-gray-300", "hover:bg-gray-200", "line-through");
|
|
|
35 |
}
|
36 |
|
37 |
const demoTourButton = document.querySelector("[data-demo-tour]");
|
|
|
32 |
|
33 |
function markDone(btn) {
|
34 |
btn.classList.add("bg-gray-300", "hover:bg-gray-200", "line-through");
|
35 |
+
btn.classList.remove("bg-transparent");
|
36 |
}
|
37 |
|
38 |
const demoTourButton = document.querySelector("[data-demo-tour]");
|