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

34 lines
381 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-05 22:06:53 +00:00
.left {
}
.center {
}
.right {
}
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
}
`;