diff options
author | Wu Cheng-Han | 2015-09-25 18:52:06 +0800 |
---|---|---|
committer | Wu Cheng-Han | 2015-09-25 18:52:06 +0800 |
commit | 2493c8f986c35bd9a51e450ac794189e2d5c173b (patch) | |
tree | d64e7b36e33182ba18b7b51ab3df087b9f3eab21 /public | |
parent | 2b57b1849fa1598f013f6d42b6a9216d9b0453b4 (diff) |
Fixed padding of view area in smaller screen
Diffstat (limited to '')
-rw-r--r-- | public/css/index.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/public/css/index.css b/public/css/index.css index 5101ac5c..2c0e4c04 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -63,6 +63,12 @@ body { /*overflow-y: scroll;*/ -webkit-overflow-scrolling: touch; } +@media (min-width: 768px) { + .ui-view-area { + padding-left: 15px; + padding-right: 15px; + } +} .ui-scrollable { height: 100%; overflow-x: hidden; |