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:
Kumi 2024-11-14 16:44:44 +01:00
parent 8be9310c36
commit 741addc3c8
Signed by: kumi
GPG key ID: ECBCC9082395383F

8
styles.css Normal file
View file

@ -0,0 +1,8 @@
.modal-fullscreen .modal-dialog {
margin: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}