aboutsummaryrefslogtreecommitdiff
path: root/src/components/Form/Form.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Form/Form.scss')
-rw-r--r--src/components/Form/Form.scss35
1 files changed, 30 insertions, 5 deletions
diff --git a/src/components/Form/Form.scss b/src/components/Form/Form.scss
index 31a15b1..381f45c 100644
--- a/src/components/Form/Form.scss
+++ b/src/components/Form/Form.scss
@@ -24,12 +24,23 @@ input[type=number] {
padding: 1.5rem;
box-sizing: border-box;
border: 1px solid $border1;
+ background-color: $background4;
display: flex;
flex-direction: column;
- justify-content: space-around;
+ justify-content: space-between;
- background-color: $background4;
+ .inputs {
+ display: flex;
+ flex-direction: column;
+ justify-content: space-around;
+ height: 100%;
+ }
+
+ h3 {
+ padding: 0;
+ margin: 0;
+ }
}
@mixin formWideLabel {
@@ -121,13 +132,27 @@ input {
.floatingForm .menu {
position: absolute;
-
right: 0.5rem;
bottom: 0.5rem;
+
+ * {
+ margin: 1rem;
+ }
}
-.floatingForm .menu * {
- margin: 1rem;
+.floatingForm .options {
+ position: absolute;
+ bottom: 1.5rem;
+ left: 1.5rem;
+
+ label {
+ display: flex;
+ align-items: center;
+ justify-content: left;
+ font-size: $fontSize1;
+ border: none;
+ padding: 0;
+ }
}
.DocumentInfoForm {