diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-07-07 15:34:04 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-07-07 15:34:04 +0530 |
commit | 177427b5821a67e141236e6aeb4db12d76b050a0 (patch) | |
tree | cbc35170fdd2e19b5f844c04486acc9150bf7e85 /src/components/Form/Form.scss | |
parent | a7965136d75c97bb6e2696c46a7d4a27dc33996c (diff) |
styled and added basic functionality to TransportForm
Diffstat (limited to 'src/components/Form/Form.scss')
-rw-r--r-- | src/components/Form/Form.scss | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/src/components/Form/Form.scss b/src/components/Form/Form.scss index 06d15ea..7642f75 100644 --- a/src/components/Form/Form.scss +++ b/src/components/Form/Form.scss @@ -160,14 +160,34 @@ input { } .TransportForm { - padding: 2rem; + padding: 1rem; + font-size: $fontSize1 + 0.25; +} + +.TransportForm label { + display: flex; + flex-direction: row; + justify-content: space-between; + min-width: 90%; +} + +.TransportForm .inputs { + height: 80%; display: flex; flex-direction: column; - justify-content: center /*space-between*/; + justify-content: space-around; align-items: center; } +.TransportForm .menu { + position: absolute; + + right: 1rem; + bottom: 1rem; + //border: 1px solid gray; +} + /*.ClientInfoDisplay { font-size: $fontSize1; }*/ |