Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/lib/scss/custom/components/_dropdown.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
margin: 0;
position: absolute;
z-index: 1000;
inset: 0px auto auto 0px !important;

&.show {
top: 100% !important;
Expand Down
4 changes: 2 additions & 2 deletions src/lib/scss/custom/components/_gallery.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
margin-top: 3px;

.gallery-item {
width: 12em;
height: 12em;
width: 8em;
height: 8em;

.gallery-item-wrapper {
position: relative;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@
</script>

{#if displayComponents}
<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)} />
<FileGallery files={files} disabled={disabled} onDelete={deleteFile} />
{/if}
2 changes: 1 addition & 1 deletion src/routes/page/agent/[agentId]/agent-routing.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

{#each agent.routing_rules as rule, idx (idx)}
<div class="routing-rule-container">
<CollapsibleCard>
<CollapsibleCard open={idx === 0}>
<div slot='header'>
<h5 class="rule-header">{`Rule #${idx + 1}`}</h5>
</div>
Expand Down