diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-26 16:20:08 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-26 16:20:08 +0530 |
commit | 66b4673b4e05275643353026275360001e4a9172 (patch) | |
tree | e3de21ac4ba854fd756afa2ced0965bc2bf041c0 /src/styles | |
parent | e2c31632d326f5f201172dba08b06b422abfa593 (diff) |
minor ui changes
Diffstat (limited to 'src/styles')
-rw-r--r-- | src/styles/global.css | 17 | ||||
-rw-r--r-- | src/styles/global.scss | 12 |
2 files changed, 24 insertions, 5 deletions
diff --git a/src/styles/global.css b/src/styles/global.css index 7d21117..5e011b3 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -22,12 +22,19 @@ body { .root-content { width: 95%; - margin: auto; } + margin: auto; + margin-bottom: 3rem; } + +.BillingPageFlex { + display: flex; + flex-direction: row; + justify-content: space-between; + height: 70vh; } + +.BillingPageFlex div { + width: 45%; + border: 1px solid pink; } @media only screen and (max-device-width: 480px) { .root-content { width: 95%; } } - -.BillingPage .ItemsList { - background-color: red; - min-height: 7rem; } diff --git a/src/styles/global.scss b/src/styles/global.scss index d9ee9bb..51e1798 100644 --- a/src/styles/global.scss +++ b/src/styles/global.scss @@ -13,6 +13,18 @@ body { .root-content { width: 95%; margin: auto; + margin-bottom: 3rem; +} + +.BillingPageFlex { + display: flex; + flex-direction: row; + justify-content: space-between; + height: 70vh; +} +.BillingPageFlex div { + width: 45%; + border: 1px solid pink; } @media only screen and (max-device-width: 480px) { |