Fix z-index footer issue in crawl workflow form (#1313)

Closes #1312

- Adds z-index to footer element.
This commit is contained in:
Henry Wilkinson 2023-10-27 00:44:50 -04:00 committed by GitHub
parent 6dc452ebad
commit 3c884f94c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -754,7 +754,7 @@ export class CrawlConfigEditor extends LiteElement {
if (this.configId) { if (this.configId) {
return html` return html`
<footer <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> <div class="mr-auto">${this.renderRunNowToggle()}</div>
<aside class="text-xs text-neutral-500"> <aside class="text-xs text-neutral-500">
@ -776,7 +776,7 @@ export class CrawlConfigEditor extends LiteElement {
if (!this.configId) { if (!this.configId) {
return html` return html`
<footer <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 })} ${this.renderSteppedFooterButtons({ isFirst, isLast })}
</footer> </footer>