From 4471ec1b9f0b966738c4dab8cd423b871b951a5b Mon Sep 17 00:00:00 2001 From: oupala Date: Thu, 22 Feb 2018 23:46:41 +0100 Subject: [PATCH] feat(css): responsive design for small screen Remove padding for mobile client. closes #29 --- apaxy/theme/style.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/apaxy/theme/style.css b/apaxy/theme/style.css index 66744eb..79b908c 100644 --- a/apaxy/theme/style.css +++ b/apaxy/theme/style.css @@ -128,3 +128,14 @@ tr.parent a[href^="/"] { text-align:center; font-size:.75em; } + +/*------------------------------------*\ + Media query for small screens +\*------------------------------------*/ +@media (max-width: 768px) { + body { + padding: 10px; + } + .indexcollastmod { display: none; } + .wrapper { max-width: 100%; } +}