fix(SidebarItem): long number wrap (#3714)

This commit is contained in:
neverland 2020-11-02 16:25:09 +08:00 committed by GitHub
parent 12b2e813ad
commit f382c2b7c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,6 @@
display: block;
box-sizing: border-box;
overflow: hidden;
word-wrap: break-word;
border-left: 3px solid transparent;
user-select: none;
.theme(padding, '@sidebar-padding');
@ -17,6 +16,7 @@
&__text {
position: relative;
display: inline-block;
word-break: break-all;
}
&--hover:not(&--disabled) {