Skip to content

Commit

Permalink
fix: horizontal overflow in collapsible sidebar (#1205)
Browse files Browse the repository at this point in the history
When the sidebar is collapsible, a horizontal scrollbar can be seen, e.g.:

https://docusaurus.io/docs/en/installation - https://i.imgur.com/IkrkLrp.png

This is caused by the arrow being rendered outside of the sidebar box.
  • Loading branch information
BTMPL authored and yangshun committed Jan 28, 2019
1 parent cbcbf5a commit 1888e0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v1/lib/static/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -1610,7 +1610,7 @@ input::placeholder {

.collapsible .arrow {
float: right;
margin-right: 5px;
margin-right: 8px;
transform: rotate(90deg);
transition: transform 200ms linear;
}
Expand Down

0 comments on commit 1888e0f

Please sign in to comment.