mirror of
https://github.com/gohugoio/hugo.git
synced 2025-04-20 22:34:27 +00: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
|
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
|
Building a bookshelf
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -9,20 +9,6 @@ prev: /tutorials/github-pages-blog/
|
||||||
title: How to contribute to Hugo
|
title: How to contribute to Hugo
|
||||||
weight: 10
|
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
|
## 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;
|
outline: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.panel-body a {
|
.panel-body a {
|
||||||
line-height: 1.1;
|
line-height: 1.1;
|
||||||
|
|
Loading…
Add table
Reference in a new issue