summaryrefslogtreecommitdiffstats
path: root/src/components/molecules/forms/radio-group.module.scss
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-05-30 19:44:37 +0200
committerArmand Philippot <git@armandphilippot.com>2022-05-31 23:15:11 +0200
commit994ad1bec193b2d1a6e0d38d6ef3f3d2bd66c3ea (patch)
tree53df625928d50ef11ceca6b4d0937d433b576aec /src/components/molecules/forms/radio-group.module.scss
parentae384aec5084b9fb9f02166890686a37d1260ef2 (diff)
chore: add a RadioGroup component
Diffstat (limited to 'src/components/molecules/forms/radio-group.module.scss')
-rw-r--r--src/components/molecules/forms/radio-group.module.scss13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/molecules/forms/radio-group.module.scss b/src/components/molecules/forms/radio-group.module.scss
new file mode 100644
index 0000000..feda9bd
--- /dev/null
+++ b/src/components/molecules/forms/radio-group.module.scss
@@ -0,0 +1,13 @@
+.option {
+ &:not(:last-of-type) {
+ margin-right: var(--spacing-xs);
+ }
+}
+
+.wrapper {
+ &--inline {
+ .option:first-of-type {
+ margin-left: var(--spacing-2xs);
+ }
+ }
+}