troodle-expcontent/styles.css
Kumi 741addc3c8
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.
2024-11-14 16:44:44 +01:00

8 lines
159 B
CSS

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