Cleanup .bg-red which does not exist anymore

This commit is contained in:
Tobias 2023-06-14 15:07:03 +02:00
parent 2eabfea8af
commit 14ae7e3272
3 changed files with 74 additions and 71 deletions

View file

@ -66,7 +66,7 @@ export default class CheckBoxes extends InputElement<number[]> {
label.htmlFor = input.id
label.appendChild(input)
label.appendChild(inputI.ConstructElement())
label.classList.add("block", "w-full", "p-2", "cursor-pointer", "bg-red")
label.classList.add("block", "w-full", "p-2", "cursor-pointer")
formTag.appendChild(label)

View file

@ -118,7 +118,7 @@ export class RadioButton<T> extends InputElement<T> {
const label = document.createElement("label")
label.appendChild(labelHtml)
label.htmlFor = input.id
label.classList.add("flex", "w-full", "cursor-pointer", "bg-red")
label.classList.add("flex", "w-full", "cursor-pointer")
if (!this._dontStyle) {
labelHtml.classList.add("p-2")