fix select

This commit is contained in:
Barrett Ruth 2025-10-08 19:46:43 -04:00
parent 375f1530a4
commit 47cb598dc5

View file

@ -1,5 +1,5 @@
.clone-line {
font-family: 'Apercu Mono', monospace !important;
font-family: 'Apercu Mono', monospace;
font-size: 1.2em;
margin: 0 1em;
text-align: left;
@ -7,11 +7,17 @@
}
.clone-line code {
background: transparent !important;
all: unset;
font-family: 'Apercu Mono', monospace !important;
white-space: normal !important;
font-family: 'Apercu Mono', monospace;
white-space: normal;
word-break: break-word;
overflow-wrap: anywhere;
line-height: 1.5;
cursor: text;
}
.clone-line .prompt {
user-select: none;
-webkit-user-select: none;
}