diff options
| author | Rapptz <[email protected]> | 2017-05-12 22:45:27 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-05-12 22:45:27 -0400 |
| commit | c6e16290118ef93e5454554a3e77651ccb895fbb (patch) | |
| tree | d3d9ff73ca5ee9d4855c6eead7304f9db78f1b8e /docs/_static/style.css | |
| parent | Remove ugly background in the FAQ page. (diff) | |
| download | discord.py-c6e16290118ef93e5454554a3e77651ccb895fbb.tar.xz discord.py-c6e16290118ef93e5454554a3e77651ccb895fbb.zip | |
Make images in the discord intro have consistent dimensions.
Diffstat (limited to 'docs/_static/style.css')
| -rw-r--r-- | docs/_static/style.css | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/_static/style.css b/docs/_static/style.css index 83540b63..5f2ea405 100644 --- a/docs/_static/style.css +++ b/docs/_static/style.css @@ -47,8 +47,10 @@ div#welcome-to-discord-py > h1 { /* no disgusting background in FAQ */ div.topic { background-color: transparent; + border: none; } -div.topic { - border: none; +/* give images some breathing room */ +img { + padding-bottom: 10px; } |