From a6ff5eee45215effb3344cb5d631a27a7c0369aa Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 22 Sep 2023 19:34:01 +0200 Subject: refactor(components): rewrite form components --- .../organisms/forms/contact-form/contact-form.module.scss | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/components/organisms/forms/contact-form/contact-form.module.scss (limited to 'src/components/organisms/forms/contact-form/contact-form.module.scss') diff --git a/src/components/organisms/forms/contact-form/contact-form.module.scss b/src/components/organisms/forms/contact-form/contact-form.module.scss new file mode 100644 index 0000000..c106fb1 --- /dev/null +++ b/src/components/organisms/forms/contact-form/contact-form.module.scss @@ -0,0 +1,15 @@ +.form { + display: flex; + flex-flow: column wrap; + gap: var(--spacing-xs); + max-width: 45ch; +} + +.field { + width: 100%; +} + +.button { + display: block; + margin: var(--spacing-sm) auto 0; +} -- cgit v1.2.3