Zezoq8's picture
I would like you to develop a ComfyUI node that can load previously saved text files, display their contents, and provide functionality to edit and save the texts.
d36caae verified
Raw
History Blame Contribute Delete
442 Bytes
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* Editor styles */
.editor-container {
transition: all 0.2s ease;
}
.editor-container:focus-within {
box-shadow: 0 0 0 2px #3b82f6;
}