Skip to content

Commit 3c884f9

Browse files
authored
Fix z-index footer issue in crawl workflow form (#1313)
Closes #1312 - Adds z-index to footer element.
1 parent 6dc452e commit 3c884f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/pages/org/workflow-editor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ export class CrawlConfigEditor extends LiteElement {
754754
if (this.configId) {
755755
return html`
756756
<footer
757-
class="px-6 py-4 flex gap-2 items-center justify-end border rounded-b-lg sticky bottom-0 bg-white"
757+
class="px-6 py-4 flex gap-2 items-center justify-end border rounded-b-lg sticky bottom-0 bg-white z-50"
758758
>
759759
<div class="mr-auto">${this.renderRunNowToggle()}</div>
760760
<aside class="text-xs text-neutral-500">
@@ -776,7 +776,7 @@ export class CrawlConfigEditor extends LiteElement {
776776
if (!this.configId) {
777777
return html`
778778
<footer
779-
class="px-6 py-4 flex gap-2 items-center justify-end border sticky bottom-0 bg-white rounded-b-lg"
779+
class="px-6 py-4 flex gap-2 items-center justify-end border sticky bottom-0 bg-white rounded-b-lg z-50"
780780
>
781781
${this.renderSteppedFooterButtons({ isFirst, isLast })}
782782
</footer>

0 commit comments

Comments
 (0)