Skip to content

Commit

Permalink
Added css rule word-break:keep-all to allow text break at comma
Browse files Browse the repository at this point in the history
  • Loading branch information
douMax committed May 22, 2019
1 parent eb188cc commit 75b4f5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ a {
left: 50vw;
text-align: center;
opacity: .8;
word-break: keep-all;
transition: top 300ms ease-in-out;
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/LoadedVerses.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default class LoadedVerses extends Component {
}

componentDidMount () {
// fetch a verse from localstorage
// fetch a verse from storage
Storager.get(['verses'], res => {
res.verses && this.setState({ verses: res.verses })
})
Expand Down

0 comments on commit 75b4f5d

Please sign in to comment.