diff options
| author | Rapptz <[email protected]> | 2020-12-19 05:52:37 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2020-12-19 05:52:43 -0500 |
| commit | a534aeac5d41c28eff56a62b271a3862291e95ea (patch) | |
| tree | 21de327dfe1d87d7e970baacc2000b83b5981a4e /docs | |
| parent | [matrix] Explicitly change colour of option (diff) | |
| download | discord.py-a534aeac5d41c28eff56a62b271a3862291e95ea.tar.xz discord.py-a534aeac5d41c28eff56a62b271a3862291e95ea.zip | |
[matrix] Flip collapsible arrow direction
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/_static/style.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/_static/style.css b/docs/_static/style.css index 66950751..7671da59 100644 --- a/docs/_static/style.css +++ b/docs/_static/style.css @@ -387,12 +387,12 @@ aside h3 { position: relative; line-height: 0.5em; transition: transform 0.4s; - transform: rotate(0deg); + transform: rotate(-90deg); } .expanded { transition: transform 0.4s; - transform: rotate(-90deg); + transform: rotate(0deg); } .ref-internal-padding { |