diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-05-03 11:59:37 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-05-03 11:59:37 +0530 |
commit | e25e884596cf07a5dee77ba2dc841b45b14f2ac5 (patch) | |
tree | 13b4f16b49f5338c8cbcd5e9fa297cc6b9b66a2e /src/components/Form | |
parent | f3606844da26a2e36df58be8ae77e22209a6d14f (diff) |
now adding new themes/colorschemes is easier and cleaner
Diffstat (limited to 'src/components/Form')
-rw-r--r-- | src/components/Form/Form.scss | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/components/Form/Form.scss b/src/components/Form/Form.scss index c880bea..09dfc16 100644 --- a/src/components/Form/Form.scss +++ b/src/components/Form/Form.scss @@ -23,18 +23,20 @@ input[type=number] { @mixin formPane { padding: 1.5rem; box-sizing: border-box; - border: 1px solid $formPaneBorderColor; + border: 1px solid $border1; display: flex; flex-direction: column; justify-content: space-around; + + background-color: $background4; } @mixin formWideLabel { display: flex; justify-content: space-between; - border-bottom: 1px dotted $labelUnderlineColor; + border-bottom: 1px dotted $underline1; padding: 0.8rem 0; font-size: 1.5rem; } @@ -120,4 +122,9 @@ input { margin: 1rem; } +/* */ +.MetaInfoForm { + width: 60%; +} + |