scroll queue item for long text

This commit is contained in:
Chenlei Hu
2025-05-16 17:15:13 -04:00
parent bd37da7161
commit 33dc74fa2a

View File

@@ -43,6 +43,20 @@ const { copyToClipboard } = useCopyToClipboard()
.text-content {
font-size: 0.875rem;
color: var(--text-color);
width: 100%;
max-height: 100%;
max-width: 80vw;
overflow-y: auto;
line-height: 1.5;
padding-right: 0.5rem;
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE and Edge */
}
/* Hide scrollbar but keep functionality */
.text-content::-webkit-scrollbar {
width: 0;
background: transparent;
}
.copy-button {