aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/FormElements/Form/Form.module.scss
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-02-25 19:29:44 +0100
committerArmand Philippot <git@armandphilippot.com>2022-02-25 19:29:44 +0100
commit99ae0a9d3a923ca1e998dc9b504dad607fdfd768 (patch)
tree70ec0c29d003d462de6926f1faa09354e3ff6d90 /src/components/FormElements/Form/Form.module.scss
parent774d5b4c538d93889bf743b6cd7d01a85f8715e6 (diff)
parente26d821f738525477472e631d170d9ed218c1603 (diff)
refactor: split form styles and combine components
I think it is better to keep styles close to the corresponding components. So I splitted the unique stylesheet. I also combine select, textarea and input components into a single one since they share the same logic and the same styles.
Diffstat (limited to 'src/components/FormElements/Form/Form.module.scss')
-rw-r--r--src/components/FormElements/Form/Form.module.scss37
1 files changed, 37 insertions, 0 deletions
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;
+}