Skip to content

Commit

Permalink
Fix project name wrapping (#697)
Browse files Browse the repository at this point in the history
Changes project name wrapping to use normal word wrapping
instead of break-all. This prevents a long project name from
being wrapped mid-word while still allowing long words to
be wrapped properly.

Fixes #696
  • Loading branch information
Mikko Ahlroth authored and josevalim committed Apr 9, 2017
1 parent d294125 commit 6de9c6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/less/sidebar.less
Expand Up @@ -62,7 +62,7 @@
margin: 0;
padding: 0;
max-width: 230px;
word-break: break-all;
word-wrap: break-word;
}

.sidebar-projectVersion {
Expand Down

0 comments on commit 6de9c6a

Please sign in to comment.