From 17c22b6078057ff70ad80e4315a8d7758a0605e4 Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Thu, 15 Apr 2021 23:34:41 +0530 Subject: tweaked the site for basic mobile use --- src/styles/global.css | 4 ++++ src/styles/global.scss | 6 ++++++ 2 files changed, 10 insertions(+) (limited to 'src/styles') diff --git a/src/styles/global.css b/src/styles/global.css index 4950d01..e5147f8 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -23,3 +23,7 @@ body { .root-content { width: 95%; margin: auto; } + +@media only screen and (max-device-width: 480px) { + .root-content { + width: 95%; } } diff --git a/src/styles/global.scss b/src/styles/global.scss index 282c790..a3727ec 100644 --- a/src/styles/global.scss +++ b/src/styles/global.scss @@ -14,3 +14,9 @@ body { width: 95%; margin: auto; } + +@media only screen and (max-device-width: 480px) { + .root-content { + width: 95%; + } +} -- cgit v1.2.3