Spaces:
Running
Running
Commit ·
d38275b
1
Parent(s): e7425c5
Fix coloring issue
Browse files- frontend/script.js +1 -0
frontend/script.js
CHANGED
|
@@ -168,6 +168,7 @@ function resetTokenSizes() {
|
|
| 168 |
const container = document.getElementById("tokenContainer");
|
| 169 |
Array.from(container.children).forEach((span) => {
|
| 170 |
span.style.fontSize = "32px";
|
|
|
|
| 171 |
});
|
| 172 |
}
|
| 173 |
|
|
|
|
| 168 |
const container = document.getElementById("tokenContainer");
|
| 169 |
Array.from(container.children).forEach((span) => {
|
| 170 |
span.style.fontSize = "32px";
|
| 171 |
+
span.style.color = "#555";
|
| 172 |
});
|
| 173 |
}
|
| 174 |
|