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

github.com/progrhyme/hugo-theme-bootie-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorprogrhyme <progrhyme@gmail.com>2018-03-28 12:08:40 +0300
committerGitHub <noreply@github.com>2018-03-28 12:08:40 +0300
commit564f0ff5e56524d51d318c3480ae45259721b12c (patch)
treeb09e62a31d6774028a8c9582db56b2a877244bb5
parent5eb97e161b3518ddf28c0495fc9a9ced1437de13 (diff)
parentbc738f40cdacec24edba12101e9573c70070a642 (diff)
Merge pull request #34 from progrhyme/fix/image-max-width
[css] Fix: add img max-width as 100%
-rw-r--r--static/css/bootie-docs.css4
1 files changed, 4 insertions, 0 deletions
diff --git a/static/css/bootie-docs.css b/static/css/bootie-docs.css
index 6beff72..779f9e0 100644
--- a/static/css/bootie-docs.css
+++ b/static/css/bootie-docs.css
@@ -24,6 +24,10 @@ h2, .h2 {
border-bottom: 1px solid #eee;
}
+img {
+ max-width: 100%;
+}
+
/* Override Bootstrap's style not to break line in code blocks */
pre {
overflow: auto;