Skip to content

Commit 4e1fa3f

Browse files
fix: corrigir posicionamento do modal de login
1 parent f736948 commit 4e1fa3f

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

docs/translate.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,34 @@
687687
display: flex;
688688
}
689689

690+
/* Modal que é criado dinamicamente (token, sucesso, etc) */
690691
.modal {
692+
position: fixed;
693+
top: 0;
694+
left: 0;
695+
right: 0;
696+
bottom: 0;
697+
background: rgba(0, 0, 0, 0.8);
698+
display: flex;
699+
justify-content: center;
700+
align-items: center;
701+
z-index: 2000;
702+
padding: 1rem;
703+
}
704+
705+
.modal .modal-content {
706+
background: var(--bg-card);
707+
border: 1px solid rgba(201, 162, 39, 0.3);
708+
border-radius: 16px;
709+
max-width: 700px;
710+
width: 100%;
711+
max-height: 90vh;
712+
overflow-y: auto;
713+
animation: modalSlideIn 0.3s ease;
714+
}
715+
716+
/* Modal overlay (suggestion-modal existente) */
717+
.modal-overlay .modal-content {
691718
background: var(--bg-card);
692719
border: 1px solid rgba(201, 162, 39, 0.3);
693720
border-radius: 16px;

0 commit comments

Comments
 (0)