Use rounded-3xl for radio buttons instead of rounded-full

This commit is contained in:
pietervdvn 2021-07-11 15:47:37 +02:00
parent 6e3c39e475
commit 38231399c4

View file

@ -103,7 +103,7 @@ export class RadioButton<T> extends InputElement<T> {
const block = document.createElement("div")
block.appendChild(input)
block.appendChild(label)
block.classList.add("flex","w-full","border", "rounded-full", "border-gray-400","m-1")
block.classList.add("flex","w-full","border", "rounded-3xl", "border-gray-400","m-1")
wrappers.push(block)
form.appendChild(block)