fix: disable user-select

This commit is contained in:
Philipinho 2024-11-28 15:55:10 +00:00
parent a1b6ac7f3e
commit 4107793e73
3 changed files with 4 additions and 0 deletions

View File

@ -26,6 +26,7 @@ export default function GlobalAppShell({
const sidebarRef = useRef(null);
const startResizing = React.useCallback((mouseDownEvent) => {
mouseDownEvent.preventDefault();
setIsResizing(true);
}, []);

View File

@ -7,6 +7,7 @@
transition: background-color 0.2s;
padding: 0 0.25rem;
margin: 0 0.1rem;
user-select: none;
&.empty {
color: light-dark(var(--mantine-color-gray-6), var(--mantine-color-gray-4));
@ -30,6 +31,7 @@
transition: background-color 0.2s;
margin: 0 0.1rem;
overflow-x: auto;
user-select: none;
.textInput {
width: 400px;

View File

@ -6,6 +6,7 @@
padding-top: 0;
display: flex;
flex-direction: column;
user-select: none;
}
.section {