Browse Source

Improve word-breaking

spaghetti 8 years ago
parent
commit
ca67d5a86a
1 changed files with 8 additions and 1 deletions
  1. 8
    1
      static/styles/global.css

+ 8
- 1
static/styles/global.css View File

@@ -17,7 +17,14 @@
17 17
 .flex_input_container > input[type=text]{
18 18
   flex-grow: 1;
19 19
   box-sizing: border-box;
20
-  width: 100%;
20
+  width: 50%;
21
+}
22
+
23
+.body, .profileinfo {
24
+  word-wrap: break-word;
25
+  word-break: break-all;
26
+  word-break: break-word;
27
+  hyphens: auto;
21 28
 }
22 29
 
23 30
 input, textarea {

Loading…
Cancel
Save