fix(app): don't force selection of all snippet text

This commit is contained in:
rektdeckard
2023-03-23 11:48:05 -06:00
parent 5c67885063
commit b782f82d14

View File

@@ -59,21 +59,6 @@
.snippet pre {
text-overflow: ellipsis;
-moz-user-select: all;
-webkit-user-select: all;
user-select: all;
}
.snippet pre:focus {
animation: select 50ms step-end forwards;
}
@keyframes select {
to {
-moz-user-select: text;
-webkit-user-select: text;
user-select: text;
}
}
.snippet button {