2022-08-05 19:36:07 +00:00
|
|
|
import styled from 'styled-components';
|
|
|
|
|
|
|
|
export const SessionWrapper = styled.div`
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
|
2022-08-05 22:06:53 +00:00
|
|
|
.reframe {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2022-08-05 19:36:07 +00:00
|
|
|
.desktop-layout {
|
2022-08-06 07:24:13 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
|
2022-08-05 22:06:53 +00:00
|
|
|
.left {
|
2022-08-06 07:24:13 +00:00
|
|
|
min-width: 256px;
|
|
|
|
max-width: 384px;
|
|
|
|
width: 20%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: yellow;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-08-05 22:06:53 +00:00
|
|
|
}
|
|
|
|
.center {
|
2022-08-06 07:24:13 +00:00
|
|
|
flex-grow: 1;
|
2022-08-05 22:06:53 +00:00
|
|
|
}
|
|
|
|
.right {
|
2022-08-06 07:24:13 +00:00
|
|
|
min-width: 256px;
|
|
|
|
max-width: 384px;
|
|
|
|
width: 20%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: yellow;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-08-05 22:06:53 +00:00
|
|
|
}
|
2022-08-05 19:36:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tablet-layout {
|
2022-08-07 06:41:09 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
|
2022-08-05 22:06:53 +00:00
|
|
|
.left {
|
2022-08-07 06:41:09 +00:00
|
|
|
min-width: 256px;
|
|
|
|
max-width: 384px;
|
|
|
|
width: 30%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: yellow;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-08-05 22:06:53 +00:00
|
|
|
}
|
2022-08-07 06:41:09 +00:00
|
|
|
.center {
|
|
|
|
flex-grow: 1;
|
2022-08-05 22:06:53 +00:00
|
|
|
}
|
2022-08-05 19:36:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.mobile-layout {
|
2022-08-07 06:41:09 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.top {
|
|
|
|
flex-grow: 1;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.bottom {
|
|
|
|
height: 48px;
|
2022-08-05 22:06:53 +00:00
|
|
|
}
|
2022-08-05 19:36:07 +00:00
|
|
|
}
|
|
|
|
`;
|