aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-06-04 11:57:29 +0530
committerBobby <[email protected]>2022-06-04 11:57:29 +0530
commit6645bce78b088ffc844ad2185047a41a9ae35b2c (patch)
tree450f92ac9f383d7b2053a243668f8710355b9e75
parent93640b6ec08bb25e24841b9084e954d7c6521611 (diff)
downloadthatcomputerscientist-6645bce78b088ffc844ad2185047a41a9ae35b2c.tar.xz
thatcomputerscientist-6645bce78b088ffc844ad2185047a41a9ae35b2c.zip
optimize for phones
-rw-r--r--public/css/main.css11
1 files changed, 11 insertions, 0 deletions
diff --git a/public/css/main.css b/public/css/main.css
index c6f001c3..b7c5a4f9 100644
--- a/public/css/main.css
+++ b/public/css/main.css
@@ -104,3 +104,14 @@ nav > ul > li {
overflow-x: hidden;
overflow-y: auto;
}
+
+/* Optimize for phones */
+@media only screen and (max-width: 480px) {
+ body {
+ flex-direction: column;
+ }
+
+ .account {
+ flex-direction: column;
+ }
+}