Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cydrobolt/polr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChaoyi Zha <summermontreal@gmail.com>2017-02-04 07:48:52 +0300
committerChaoyi Zha <summermontreal@gmail.com>2017-02-04 07:48:52 +0300
commit1a4e11627ba383b3114ffc7e7218018e7ea5ee81 (patch)
treee9dc00d967faa2f2f0639822878311a24f0ceff3 /docs
parent961b1444725ae80b5dd3570dfa220ab333fc46a7 (diff)
Fix image size for mobile docs
Diffstat (limited to 'docs')
-rw-r--r--docs/css/base.css6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/css/base.css b/docs/css/base.css
index 2a21eda..f239325 100644
--- a/docs/css/base.css
+++ b/docs/css/base.css
@@ -1,3 +1,9 @@
h1, h2, h3, h4, h5, h6 {
text-transform: none !important;
}
+
+img {
+ /* Force auto height & width to prevent deformed images on mobile */
+ width: auto !important;
+ height: auto !important;
+}