diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-18 14:02:20 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-18 14:02:20 +0530 |
commit | dafb3638bbd1184f15ad9b7637178ea6ce510d90 (patch) | |
tree | fac4fe8dc507ca562a18dcb4fec6d2033da4adf9 /src/components/Form/Form.css | |
parent | b7c32d7ea171ce460d07af316220758ebde9893c (diff) |
fixed AddNewItemForm styling
Diffstat (limited to 'src/components/Form/Form.css')
-rw-r--r-- | src/components/Form/Form.css | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/src/components/Form/Form.css b/src/components/Form/Form.css index cf9bc60..102e4bb 100644 --- a/src/components/Form/Form.css +++ b/src/components/Form/Form.css @@ -13,10 +13,11 @@ $defShadow: 0px 0px 4px #232627; */ /* Inspired by Dracula */ .formContainer { - border: 1px solid pink; - padding: 2rem; - height: 60vh; - border-radius: 1rem; } + /*border: 1px solid pink;*/ + /*padding: 2rem;*/ + height: 50vh; + border-radius: 1rem; + padding: 1.5rem 0; } .addNewItemForm .textInputs, .addNewItemForm .numericInputs @@ -27,11 +28,11 @@ label { display: flex; flex-direction: row; justify-content: space-between; - height: 85%; } + height: 100%; } .addNewItemForm .textInputs, .addNewItemForm .numericInputs { - border: 1px solid #FF79C6; + border: 1px dashed #FF79C6; width: 30%; justify-content: space-around; } @@ -39,9 +40,9 @@ label { width: 5.5rem; } .addNewItemForm .menuButtons { - justify-content: space-around; - border: 1px solid lightgreen; - width: 15%; } + border: 1px dashed #FF79C6; + width: 15%; + justify-content: space-around; } .addNewItemForm .menuButtons * { width: 100%; } @@ -49,7 +50,7 @@ label { .addNewItemForm div { display: flex; flex-direction: column; - border-radius: 1rem; + /*border-radius: 1rem;*/ padding: 1.5rem; overflow: scroll; } |