feat: add fullscreen modal styling
Introduced CSS for fullscreen modal dialogs to ensure they occupy the entire view and content is centered. This styling adjustment enhances user experience by making full use of screen space, especially useful for immersive content and presentations. This change is relevant to improving interface consistency for modal displays.
This commit is contained in:
parent
8be9310c36
commit
741addc3c8
1 changed files with 8 additions and 0 deletions
8
styles.css
Normal file
8
styles.css
Normal file
|
@ -0,0 +1,8 @@
|
|||
.modal-fullscreen .modal-dialog {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
Loading…
Reference in a new issue