Fix z-index footer issue in crawl workflow form (#1313)
Closes #1312 - Adds z-index to footer element.
This commit is contained in:
parent
6dc452ebad
commit
3c884f94c9
@ -754,7 +754,7 @@ export class CrawlConfigEditor extends LiteElement {
|
||||
if (this.configId) {
|
||||
return html`
|
||||
<footer
|
||||
class="px-6 py-4 flex gap-2 items-center justify-end border rounded-b-lg sticky bottom-0 bg-white"
|
||||
class="px-6 py-4 flex gap-2 items-center justify-end border rounded-b-lg sticky bottom-0 bg-white z-50"
|
||||
>
|
||||
<div class="mr-auto">${this.renderRunNowToggle()}</div>
|
||||
<aside class="text-xs text-neutral-500">
|
||||
@ -776,7 +776,7 @@ export class CrawlConfigEditor extends LiteElement {
|
||||
if (!this.configId) {
|
||||
return html`
|
||||
<footer
|
||||
class="px-6 py-4 flex gap-2 items-center justify-end border sticky bottom-0 bg-white rounded-b-lg"
|
||||
class="px-6 py-4 flex gap-2 items-center justify-end border sticky bottom-0 bg-white rounded-b-lg z-50"
|
||||
>
|
||||
${this.renderSteppedFooterButtons({ isFirst, isLast })}
|
||||
</footer>
|
||||
|
Loading…
Reference in New Issue
Block a user