Update index.html
Browse files- index.html +2 -2
index.html
CHANGED
@@ -253,11 +253,11 @@ Very polite review:`,
|
|
253 |
input.type = "radio";
|
254 |
input.name = "task";
|
255 |
input.id = `templates-${i}`;
|
256 |
-
input.classList.add("font-light", "cursor-pointer"
|
257 |
input.value = prompt;
|
258 |
const label = document.createElement("label");
|
259 |
label.htmlFor = `templates-${i}`;
|
260 |
-
label.classList.add("cursor-pointer");
|
261 |
label.innerText = title;
|
262 |
div.appendChild(input);
|
263 |
div.appendChild(label);
|
|
|
253 |
input.type = "radio";
|
254 |
input.name = "task";
|
255 |
input.id = `templates-${i}`;
|
256 |
+
input.classList.add("font-light", "cursor-pointer");
|
257 |
input.value = prompt;
|
258 |
const label = document.createElement("label");
|
259 |
label.htmlFor = `templates-${i}`;
|
260 |
+
label.classList.add("cursor-pointer", "px-1");
|
261 |
label.innerText = title;
|
262 |
div.appendChild(input);
|
263 |
div.appendChild(label);
|