diff options
Diffstat (limited to 'src/components/Pages/BillingPage.scss')
-rw-r--r-- | src/components/Pages/BillingPage.scss | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/components/Pages/BillingPage.scss b/src/components/Pages/BillingPage.scss new file mode 100644 index 0000000..f359df1 --- /dev/null +++ b/src/components/Pages/BillingPage.scss @@ -0,0 +1,20 @@ +@import "./../../styles/theme"; + +.BillingPageFlex div { + box-sizing: border-box; + border: 1px solid $border1; +} + +.BillingPageFlex { + display: flex; + flex-direction: row; + justify-content: space-between; + height: 27rem; +} + +@media only screen and (max-device-width: 480px) { + .BillingPageFlex { + flex-direction: column; + height: 35rem; + } +} |