mirror of
https://github.com/balzack/databag.git
synced 2025-02-13 20:19:16 +00:00
16 lines
190 B
JavaScript
16 lines
190 B
JavaScript
|
import styled from 'styled-components';
|
||
|
|
||
|
export const SessionWrapper = styled.div`
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
|
||
|
.desktop-layout {
|
||
|
}
|
||
|
|
||
|
.tablet-layout {
|
||
|
}
|
||
|
|
||
|
.mobile-layout {
|
||
|
}
|
||
|
`;
|