fix z-index of homepage modals & buttons so modals always appear above the buttons

This commit is contained in:
evanpelle
2025-11-20 19:35:07 -08:00
parent c60b0bcb2b
commit c5b1bca6c6
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -390,7 +390,7 @@ export class AccountButton extends LitElement {
}
return html`
<div class="fixed top-4 right-4 z-[9999]">
<div class="fixed top-4 right-4 z-[9998]">
<button
@click="${this.open}"
class="w-12 h-12 bg-blue-600 hover:bg-blue-700 text-white rounded-full shadow-2xl hover:shadow-3xl transition-all duration-200 flex items-center justify-center text-xl focus:outline-none focus:ring-4 focus:ring-blue-500 focus:ring-offset-4"
+1 -1
View File
@@ -64,7 +64,7 @@ export class LanguageModal extends LitElement {
return html`
<aside
class="fixed p-4 z-[1000] inset-0 bg-black/50 overflow-y-auto flex items-center justify-center"
class="fixed p-4 z-[9999] inset-0 bg-black/50 overflow-y-auto flex items-center justify-center"
>
<div
class="bg-gray-800/80 dark:bg-gray-900/90 backdrop-blur-md rounded-lg min-w-[340px] max-w-[480px] w-full"
+1 -1
View File
@@ -210,7 +210,7 @@ export class StatsButton extends LitElement {
}
return html`
<div class="fixed top-20 right-4 z-[9999]">
<div class="fixed top-20 right-4 z-[9998]">
<button
@click="${this.open}"
class="w-12 h-12 bg-blue-600 hover:bg-blue-700 text-white rounded-full shadow-2xl hover:shadow-3xl transition-all duration-200 flex items-center justify-center text-xl focus:outline-none focus:ring-4 focus:ring-blue-500 focus:ring-offset-4"