databag/net/web/src/access/Access.styled.js

44 lines
711 B
JavaScript
Raw Normal View History

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`
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};
}
}
.split-layout {
2022-08-04 05:07:02 +00:00
display: flex;
flex-direction: row;
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 20:20:10 +00:00
`;