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

54 lines
821 B
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-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-05 22:06:53 +00:00
.left {
}
.right {
}
2022-08-05 19:36:07 +00:00
}
.mobile-layout {
2022-08-05 22:06:53 +00:00
.center {
}
2022-08-05 19:36:07 +00:00
}
`;