From 38231399c4bd92f033e9ef8abd483cc0ee742f58 Mon Sep 17 00:00:00 2001 From: pietervdvn Date: Sun, 11 Jul 2021 15:47:37 +0200 Subject: [PATCH] Use rounded-3xl for radio buttons instead of rounded-full --- UI/Input/RadioButton.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/Input/RadioButton.ts b/UI/Input/RadioButton.ts index fd5c006c2..2822b2166 100644 --- a/UI/Input/RadioButton.ts +++ b/UI/Input/RadioButton.ts @@ -103,7 +103,7 @@ export class RadioButton extends InputElement { 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)