diff options
-rw-r--r-- | src/App.css | 3 | ||||
-rw-r--r-- | src/Board.js | 7 |
2 files changed, 8 insertions, 2 deletions
diff --git a/src/App.css b/src/App.css index 4698349..6339996 100644 --- a/src/App.css +++ b/src/App.css @@ -2,7 +2,8 @@ margin-top: 4em; } -.postMessage { +.postMessage, +.threadTitle { word-break: break-word; overflow-wrap: anywhere; text-overflow: ellipsis; diff --git a/src/Board.js b/src/Board.js index 933d4b3..2a6155f 100644 --- a/src/Board.js +++ b/src/Board.js @@ -147,7 +147,12 @@ class Board extends Component { {threadList.map(thread => ( <Segment.Group key={"seg_" + thread.timestamp + thread.id}> - <Header as="h3" attached inverted={nightMode}> + <Header + as="h3" + attached + inverted={nightMode} + className="threadTitle" + > <Link to={`/${dir}/read/${thread.id}`}>{thread.subject}</Link> <Header.Subheader> {thread.total_replies} respuestas |