Skip to content

Commit

Permalink
refactor(app): don't allow users to select text during error recovery
Browse files Browse the repository at this point in the history
  • Loading branch information
mjhuff committed Nov 18, 2024
1 parent 8eb7fdb commit 2e93a51
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ const SMALL_MODAL_STYLE = css`
padding: ${SPACING.spacing32};
width: 100%;
overflow-y: ${OVERFLOW_AUTO};
user-select: none;
@media ${RESPONSIVENESS.touchscreenMediaQuerySpecs} {
padding: ${SPACING.spacing32};
Expand All @@ -69,6 +70,7 @@ const LARGE_MODAL_STYLE = css`
height: 26.75rem;
width: 100%;
overflow-y: ${OVERFLOW_AUTO};
user-select: none;
@media ${RESPONSIVENESS.touchscreenMediaQuerySpecs} {
height: 100%;
Expand Down

0 comments on commit 2e93a51

Please sign in to comment.