fix text wrapping for CJK characters
This commit is contained in:
parent
25dfe192d6
commit
42df4afae3
3 changed files with 9 additions and 4 deletions
|
@ -5,7 +5,8 @@ body {
|
|||
color: #ffffff;
|
||||
font-weight: lighter;
|
||||
overflow-x: hidden;
|
||||
font-size: 100%; }
|
||||
font-size: 100%;
|
||||
word-break: break-word; }
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
|
@ -127,7 +128,8 @@ a * {
|
|||
color: #ffffff;
|
||||
font-weight: 400;
|
||||
cursor: pointer;
|
||||
text-transform: uppercase; }
|
||||
text-transform: uppercase;
|
||||
user-select: none; }
|
||||
|
||||
label.button {
|
||||
padding: 0.25rem 0.5rem;
|
||||
|
|
|
@ -5,7 +5,8 @@ body {
|
|||
color: #282c37;
|
||||
font-weight: lighter;
|
||||
overflow-x: hidden;
|
||||
font-size: 100%; }
|
||||
font-size: 100%;
|
||||
word-break: break-word; }
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
|
@ -127,7 +128,8 @@ a * {
|
|||
color: #282c37;
|
||||
font-weight: 400;
|
||||
cursor: pointer;
|
||||
text-transform: uppercase; }
|
||||
text-transform: uppercase;
|
||||
user-select: none; }
|
||||
|
||||
label.button {
|
||||
padding: 0.25rem 0.5rem;
|
||||
|
|
|
@ -13,6 +13,7 @@ body {
|
|||
font-weight: lighter;
|
||||
overflow-x:hidden;
|
||||
font-size:100%;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
* {
|
||||
|
|
Reference in a new issue