diff options
author | Kamil Doległo <kamilok1965@interia.pl> | 2020-03-11 21:47:11 +0100 |
---|---|---|
committer | Kamil Doległo <kamilok1965@interia.pl> | 2020-03-11 21:47:11 +0100 |
commit | 78992dab91853ac2323b504955db3a89a109dc1b (patch) | |
tree | 0ebc158ea15d6adf2e5932089288671675f43647 /core/src/main/resources | |
parent | ec71e3e42161a6a4a315ec39216344b87beadcfd (diff) | |
download | dokka-78992dab91853ac2323b504955db3a89a109dc1b.tar.gz dokka-78992dab91853ac2323b504955db3a89a109dc1b.tar.bz2 dokka-78992dab91853ac2323b504955db3a89a109dc1b.zip |
Rotate arrows on closed menu
Diffstat (limited to 'core/src/main/resources')
-rw-r--r-- | core/src/main/resources/dokka/styles/style.css | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/core/src/main/resources/dokka/styles/style.css b/core/src/main/resources/dokka/styles/style.css index 85ad5b0d..2c97cd1f 100644 --- a/core/src/main/resources/dokka/styles/style.css +++ b/core/src/main/resources/dokka/styles/style.css @@ -89,9 +89,18 @@ background-color: rgba(91, 93, 239, 0.15); } +.sideMenuPart .hidden > .overview .navButtonContent::before { + transform: rotate(0deg); +} + .sideMenuPart > .overview .navButtonContent::before { - padding-left: 2px; content: url("../images/arrow_down.svg"); + height: 100%; + display: flex; + flex-direction: row; + align-items: center; + justify-content: center; + transform: rotate(180deg); } .sideMenuPart.hidden > .navButton .navButtonContent::after { |