aboutsummaryrefslogtreecommitdiff
path: root/src/components/Form/Form.scss
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-08-31 13:12:47 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-08-31 13:12:47 +0530
commitb2642dee763627b6889aadc4bbfcd201abbdd498 (patch)
treee537ccd1da85c0198fd46ea30956cf01185eab11 /src/components/Form/Form.scss
parent6f625bb9741b90ea5272914bf7958eed0f42e885 (diff)
Added half support to add different shipping address
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 {