Skip to content
This repository was archived by the owner on Oct 1, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
allow users to select text
  • Loading branch information
bebiksior committed Jul 21, 2024
commit e47d32302a2c3b1f7ed41b52d751cb4fe6f50405
6 changes: 6 additions & 0 deletions public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
width: 100%;
}

/* Allow user to select text */
#notesTable td {
user-select: auto;
-webkit-user-select: auto;
}

#notesTable td:nth-child(1) {
width: 200px;
white-space: pre-wrap;
Expand Down