Skip to content

Commit

Permalink
Allow selecting text in detail view (fixes #102)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rik Smith-Unna committed Jun 28, 2017
1 parent e5881ff commit 314330d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 6 additions & 0 deletions app/client/views/detail.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ module.exports = (state, emit) => {
flex-direction: column;
justify-content: space-between;
padding: 10px;
user-select: text;
}
.paper ::selection {
background: ${C.WHITE};
color: ${C.GREYBLUE};
}
.row {
Expand Down
1 change: 0 additions & 1 deletion app/client/views/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ const style = css`
display: flex;
align-items: center;
justify-content: center;
}
`
Expand Down

0 comments on commit 314330d

Please sign in to comment.