File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed
Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 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 ;
You can’t perform that action at this time.
0 commit comments