From c65e26ec4c65d97aa3246ac12fd788b1a645ac7d Mon Sep 17 00:00:00 2001 From: RMidhunSuresh Date: Wed, 26 May 2021 15:59:04 +0530 Subject: [PATCH] Position the close button to right end Signed-off-by: RMidhunSuresh --- src/platform/web/ui/css/right-panel.css | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/platform/web/ui/css/right-panel.css b/src/platform/web/ui/css/right-panel.css index 76cf3091..ab2879fc 100644 --- a/src/platform/web/ui/css/right-panel.css +++ b/src/platform/web/ui/css/right-panel.css @@ -15,12 +15,17 @@ justify-content: space-between; } -.SidebarLabel, .SidebarRow, -.RoomInfo, .RoomEncryption { +.SidebarLabel, .SidebarRow, .RoomInfo, .RoomEncryption { display: flex; align-items: center; -} +} .RoomEncryption { justify-content: center; } + +.buttons { + display: flex; + justify-content: right; + width: 100%; +}