Add newline for spacing in style
This commit is contained in:
parent
ddd15fa4b0
commit
0c45609a14
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ async function createBoard(width: number, height: number, mines: number): Promis
|
||||||
}
|
}
|
||||||
inputs += `<input id=input_${idx} type=checkbox ${fieldIsMine ? "data-mine" : "data-safe"}></input>`;
|
inputs += `<input id=input_${idx} type=checkbox ${fieldIsMine ? "data-mine" : "data-safe"}></input>`;
|
||||||
style += `#input_${idx}:checked ~ main label[for="input_${idx}"]::before { content: "${fieldIsMine ? "X" : getNeighbors(idx)}"; }\n`
|
style += `#input_${idx}:checked ~ main label[for="input_${idx}"]::before { content: "${fieldIsMine ? "X" : getNeighbors(idx)}"; }\n`
|
||||||
+ `#input_${idx}:checked ~ main label[for="input_${idx}"] { pointer-events: none; }`;
|
+ `#input_${idx}:checked ~ main label[for="input_${idx}"] { pointer-events: none; }\n`;
|
||||||
}
|
}
|
||||||
table += "</tr></tbody></table>"
|
table += "</tr></tbody></table>"
|
||||||
style += "</style>"
|
style += "</style>"
|
||||||
|
|
Loading…
Reference in a new issue