mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
docs: Move image-width fix to style.css
This commit is contained in:
parent
48fce6110d
commit
ebefa47691
3 changed files with 4 additions and 30 deletions
|
@ -11,22 +11,6 @@ title: Hugo Quickstart Guide
|
|||
weight: 10
|
||||
---
|
||||
|
||||
<!--
|
||||
This only a temporary fix!
|
||||
|
||||
Cloudflare doesn't automatically updates the cache with a
|
||||
new version of the stylesheet.
|
||||
|
||||
See #1888
|
||||
-->
|
||||
<style type="text/css">
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
Building a bookshelf
|
||||
---
|
||||
|
||||
|
|
|
@ -9,20 +9,6 @@ prev: /tutorials/github-pages-blog/
|
|||
title: How to contribute to Hugo
|
||||
weight: 10
|
||||
---
|
||||
<!--
|
||||
This only a temporary fix!
|
||||
|
||||
Cloudflare doesn't automatically updates the cache with a
|
||||
new version of the stylesheet.
|
||||
|
||||
See #2045
|
||||
-->
|
||||
<style type="text/css">
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
</style>
|
||||
|
||||
## Introduction
|
||||
|
||||
|
|
4
docs/static/css/style.css
vendored
4
docs/static/css/style.css
vendored
|
@ -133,6 +133,10 @@ a, a:hover, a:focus {
|
|||
outline: 0;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.panel-body a {
|
||||
line-height: 1.1;
|
||||
|
|
Loading…
Reference in a new issue