Add menus for saving presets/characters/instruction templates/prompts (#2621)

This commit is contained in:
oobabooga 2023-06-11 12:19:18 -03:00 committed by GitHub
parent ea0eabd266
commit 6133675e0f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 220 additions and 98 deletions

View file

@ -82,7 +82,7 @@ div.svelte-15lo0d8 > *, div.svelte-15lo0d8 > .form > * {
}
.textbox_default textarea {
height: calc(100vh - 381px);
height: calc(100vh - 416px);
}
.textbox_default_output textarea {
@ -113,4 +113,19 @@ button {
.small-button {
max-width: 171px;
}
.file-saver {
position: fixed !important;
top: 50%;
left: 50%;
transform: translate(-50%, -50%); /* center horizontally */
max-width: 500px;
background-color: var(--input-background-fill);
border: 2px solid black !important;
z-index: 1000;
}
.dark .file-saver {
border: 2px solid white !important;
}