From 741addc3c88f9b78c35d22de0d799fe1d7eac73d Mon Sep 17 00:00:00 2001 From: Kumi Date: Thu, 14 Nov 2024 16:44:44 +0100 Subject: [PATCH] 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. --- styles.css | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 styles.css diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..3c2d005 --- /dev/null +++ b/styles.css @@ -0,0 +1,8 @@ +.modal-fullscreen .modal-dialog { + margin: 0; + width: 100%; + height: 100%; + display: flex; + align-items: center; + justify-content: center; +}