databag/net/web/src/session/Session.styled.js

86 lines
1.5 KiB
JavaScript
Raw Normal View History

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-08 06:30:34 +00:00
position: relative;
2022-08-09 18:14:36 +00:00
min-height: 0;
2022-08-05 22:06:53 +00:00
}
.center {
2022-08-06 07:24:13 +00:00
flex-grow: 1;
2022-08-08 06:30:34 +00:00
position: relative;
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-08 06:30:34 +00:00
position: relative;
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-08 06:30:34 +00:00
position: relative;
2022-08-09 18:14:36 +00:00
min-height: 0;
2022-08-05 22:06:53 +00:00
}
2022-08-07 06:41:09 +00:00
.center {
flex-grow: 1;
2022-08-08 06:30:34 +00:00
position: relative;
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-08 06:30:34 +00:00
position: relative;
2022-08-10 05:41:40 +00:00
box-shadow: 0px -8px 16px 0px rgba(0,0,0,0.3);
2022-08-05 22:06:53 +00:00
}
2022-08-05 19:36:07 +00:00
}
`;