From 03655441fff6ad9977fc658299e73a370e8cd364 Mon Sep 17 00:00:00 2001 From: DorraJaouad Date: Mon, 29 Apr 2024 14:37:20 +0200 Subject: [PATCH] fix: remove margin top for h2 elements in modals Signed-off-by: DorraJaouad --- src/App.vue | 4 ++++ src/components/BreakoutRoomsEditor/BreakoutRoomsEditor.vue | 4 ---- .../RightSidebar/BreakoutRooms/BreakoutRoomsActions.vue | 4 ---- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/src/App.vue b/src/App.vue index 17eff15ba0e5..dc1f4cae93e1 100644 --- a/src/App.vue +++ b/src/App.vue @@ -768,6 +768,10 @@ export default { body .modal-wrapper * { box-sizing: border-box; } + +.modal-wrapper h2 { + margin-top: 0; +}