Add css to place items appropriately

Signed-off-by: RMidhunSuresh <rmidhunsuresh@gmail.com>
This commit is contained in:
RMidhunSuresh 2021-05-26 15:41:23 +05:30
parent f42553f8cb
commit c96abc8892

View file

@ -1,8 +1,26 @@
.RoomInfo{
.RoomInfo {
grid-area: right;
background : rgba(245, 245, 245, 0.90);
display: flex;
flex-direction: column;
align-items: center;
padding:10px;
}
.RoomAvatar {
display: flex;
}
.RoomName h2 {
text-align: center;
}
.SidebarRow {
justify-content: space-between;
}
.SidebarLabel, .SidebarRow,
.RoomInfo, .RoomEncryption {
display: flex;
align-items: center;
}
.RoomEncryption {
justify-content: center;
}