aboutsummaryrefslogtreecommitdiff
path: root/src/components/Pages/BillingPage.scss
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-08-29 10:46:06 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-08-29 10:46:06 +0530
commit20b48b0003f198ef51eb982735526011f59c511d (patch)
treed05ee38c6b0b137e3a3eabeb0d101000d9acd2f4 /src/components/Pages/BillingPage.scss
parent12fa58555681257384150383b4e83c572d19fec9 (diff)
styled SubmitButton and making it disappear when invalid
Diffstat (limited to 'src/components/Pages/BillingPage.scss')
-rw-r--r--src/components/Pages/BillingPage.scss20
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;
+ }
+}