From e26d821f738525477472e631d170d9ed218c1603 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 25 Feb 2022 19:17:09 +0100 Subject: chore: combine input/textarea/select in a single component --- src/components/FormElements/Form/Form.module.scss | 37 +++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/components/FormElements/Form/Form.module.scss (limited to 'src/components/FormElements/Form/Form.module.scss') diff --git a/src/components/FormElements/Form/Form.module.scss b/src/components/FormElements/Form/Form.module.scss new file mode 100644 index 0000000..0f7c437 --- /dev/null +++ b/src/components/FormElements/Form/Form.module.scss @@ -0,0 +1,37 @@ +@use "@styles/abstracts/functions" as fun; + +.wrapper { + width: 100%; +} + +.centered { + max-width: 45ch; + margin-left: auto; + margin-right: auto; +} + +.search { + display: flex; + flex-flow: row nowrap; + align-items: center; + + > input { + padding-right: calc(var(--btn-size) + var(--spacing-2xs)); + + &:hover ~ button { + transform: translate(fun.convert-px(-3), fun.convert-px(-3)); + } + + &:focus ~ button { + transform: translate(fun.convert-px(3), fun.convert-px(3)); + } + } +} + +.settings { + display: flex; + flex-flow: row nowrap; + align-items: center; + margin: var(--spacing-sm) 0; + position: relative; +} -- cgit v1.2.3