We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc7d0b3 commit 76ea474Copy full SHA for 76ea474
src/lib/scss/custom/components/_gallery.scss
@@ -5,8 +5,8 @@
5
margin-top: 3px;
6
7
.gallery-item {
8
- width: 12em;
9
- height: 12em;
+ width: 8em;
+ height: 8em;
10
11
.gallery-item-wrapper {
12
position: relative;
src/routes/chat/[agentId]/[conversationId]/chatImage/chat-attachment.svelte
@@ -39,6 +39,6 @@
39
</script>
40
41
{#if displayComponents}
42
- <FileDropZone accept="image/*" disabled={disabled} on:drop={e => handleFileDrop(e)} />
+ <FileDropZone accept="image/*" containerStyles={'width: 100%; height: fit-content; min-height: 8rem;'} disabled={disabled} on:drop={e => handleFileDrop(e)} />
43
<FileGallery files={files} disabled={disabled} onDelete={deleteFile} />
44
{/if}
0 commit comments