mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-25 12:35:01 +01:00
58 lines
925 B
CSS
58 lines
925 B
CSS
html {
|
|
height: 100%;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
.SessionView {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100vh;
|
|
}
|
|
|
|
.SessionView > .main {
|
|
flex: 1;
|
|
display: flex;
|
|
min-height: 0;
|
|
min-width: 0;
|
|
width: 100vw;
|
|
}
|
|
|
|
/* mobile layout */
|
|
@media screen and (max-width: 800px) {
|
|
div.back { display: block !important; }
|
|
div.RoomView, div.RoomPlaceholderView { display: none; }
|
|
div.LeftPanel {flex-grow: 1;}
|
|
div.room-shown div.RoomView { display: unset; }
|
|
div.room-shown div.LeftPanel { display: none; }
|
|
div.right-shown div.TimelinePanel { display: none; }
|
|
}
|
|
|
|
.LeftPanel {
|
|
flex: 0 0 300px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.RoomPlaceholderView, .RoomView {
|
|
flex: 1 0 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
.RoomView {
|
|
min-width: 0;
|
|
display: flex;
|
|
}
|
|
|
|
|
|
.TimelinePanel {
|
|
flex: 3;
|
|
min-height: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.RoomHeader {
|
|
display: flex;
|
|
}
|