Add sidebar animation when collapsing

This commit is contained in:
Nihaal Sangha
2020-09-01 20:24:03 +01:00
committed by Rapptz
parent 13dacb3994
commit 0559d77e5a
2 changed files with 9 additions and 5 deletions

View File

@ -361,6 +361,13 @@ aside h3 {
user-select: none;
position: relative;
line-height: 0.5em;
transition: transform 0.4s;
transform: rotate(0deg);
}
.expanded {
transition: transform 0.4s;
transform: rotate(-90deg);
}
.ref-internal-padding {