Fix modal visibility and database path issues for Docker deployment
This commit is contained in:
@@ -340,9 +340,8 @@ input:focus, textarea:focus, .nui-input:focus, .nui-textarea:focus {
|
||||
vertical-align: middle !important;
|
||||
}
|
||||
|
||||
/* Modal styling - CRITICAL FIX */
|
||||
.nui-modal {
|
||||
font-family: 'Inter', ui-sans-serif, system-ui, sans-serif !important;
|
||||
/* Modal styling - CRITICAL FIX - Must be more specific */
|
||||
div[class*="modal"], [class*="modal"] {
|
||||
position: fixed !important;
|
||||
top: 0 !important;
|
||||
left: 0 !important;
|
||||
@@ -356,7 +355,7 @@ input:focus, textarea:focus, .nui-input:focus, .nui-textarea:focus {
|
||||
backdrop-filter: blur(4px) !important;
|
||||
}
|
||||
|
||||
.nui-modal-overlay {
|
||||
div[class*="modal-overlay"], [class*="modal-overlay"] {
|
||||
position: fixed !important;
|
||||
top: 0 !important;
|
||||
left: 0 !important;
|
||||
@@ -366,23 +365,42 @@ input:focus, textarea:focus, .nui-input:focus, .nui-textarea:focus {
|
||||
backdrop-filter: blur(4px) !important;
|
||||
}
|
||||
|
||||
.nui-modal-content {
|
||||
div[class*="modal-content"], [class*="modal-content"] {
|
||||
background: white !important;
|
||||
border-radius: 0.5rem !important;
|
||||
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
|
||||
max-width: 90vw !important;
|
||||
max-width: 400px !important;
|
||||
max-height: 90vh !important;
|
||||
overflow: auto !important;
|
||||
position: relative !important;
|
||||
z-index: 10000 !important;
|
||||
margin: 1rem !important;
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
/* Ensure modal is properly centered */
|
||||
.nui-modal > div {
|
||||
width: 100% !important;
|
||||
/* Specific Nuxt UI modal overrides */
|
||||
[data-modal] {
|
||||
position: fixed !important;
|
||||
inset: 0 !important;
|
||||
display: flex !important;
|
||||
align-items: center !important;
|
||||
justify-content: center !important;
|
||||
background-color: rgba(0, 0, 0, 0.5) !important;
|
||||
backdrop-filter: blur(4px) !important;
|
||||
}
|
||||
|
||||
[data-modal] > [data-modal-overlay] {
|
||||
position: fixed !important;
|
||||
inset: 0 !important;
|
||||
background-color: rgba(0, 0, 0, 0.5) !important;
|
||||
}
|
||||
|
||||
[data-modal] > [data-modal-content] {
|
||||
background: white !important;
|
||||
border-radius: 0.5rem !important;
|
||||
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
|
||||
max-width: 400px !important;
|
||||
margin: 0 auto !important;
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
/* Force logo to be small */
|
||||
|
||||
Reference in New Issue
Block a user