2022-08-03 20:20:10 +00:00
|
|
|
import styled from 'styled-components';
|
|
|
|
import Colors from 'constants/Colors';
|
|
|
|
|
2022-08-04 06:28:09 +00:00
|
|
|
export const AccessWrapper = styled.div`
|
2022-08-03 21:30:24 +00:00
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
.full-layout {
|
|
|
|
width: 100%;
|
2022-08-04 05:07:02 +00:00
|
|
|
height: 100%;
|
|
|
|
padding: 8px;
|
|
|
|
|
|
|
|
.center {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: ${Colors.formBackground};
|
|
|
|
}
|
2022-08-03 21:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.split-layout {
|
2022-08-04 05:07:02 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2022-08-03 21:30:24 +00:00
|
|
|
height: 100%;
|
2022-08-04 05:07:02 +00:00
|
|
|
|
|
|
|
.left {
|
|
|
|
width: 50%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 32px;
|
|
|
|
|
|
|
|
.splash {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: contain;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.right {
|
|
|
|
width: 50%;
|
|
|
|
height: 100%;
|
|
|
|
background: ${Colors.formBackground};
|
|
|
|
}
|
2022-08-03 21:30:24 +00:00
|
|
|
}
|
2022-08-03 20:20:10 +00:00
|
|
|
`;
|