diff options
author | 2021-03-07 03:17:33 +0300 | |
---|---|---|
committer | 2021-03-07 03:17:33 +0300 | |
commit | df350092c32af5500e3d949987bc16dd9aaa5225 (patch) | |
tree | 4e523f0f20359bf3ea524bd6bcee684b763565f5 /src | |
parent | Merge pull request #173 from python-discord/dependabot/npm_and_yarn/swc/core-... (diff) |
Fixes Radio Button Rounding
Makes radio buttons spheres instead of ovals.
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/components/InputTypes/Radio.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/InputTypes/Radio.tsx b/src/components/InputTypes/Radio.tsx index a857964..d95dcdd 100644 --- a/src/components/InputTypes/Radio.tsx +++ b/src/components/InputTypes/Radio.tsx @@ -14,7 +14,7 @@ interface RadioProps { const styles = css` div { width: 0.7em; - height: 0.75em; + height: 0.7em; top: 0.18rem; border-radius: 50%; |