2022-07-12 21:49:11 +00:00
|
|
|
import styled from "styled-components";
|
|
|
|
|
2022-07-18 16:30:48 +00:00
|
|
|
const MainContainer = styled.main`
|
|
|
|
padding-left: 97px;
|
|
|
|
padding-top: 26px;
|
|
|
|
margin-right: 16px;
|
|
|
|
position: relative;
|
2022-07-12 21:49:11 +00:00
|
|
|
display: flex;
|
2022-07-18 16:30:48 +00:00
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-end;
|
|
|
|
height: 96vh;
|
|
|
|
`;
|
|
|
|
const TitleContainer = styled.div`
|
|
|
|
width: 100%;
|
|
|
|
`;
|
|
|
|
const ContentContainer = styled.div`
|
2022-07-12 21:49:11 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100vh;
|
2022-07-18 16:30:48 +00:00
|
|
|
overflow: hidden;
|
|
|
|
margin-top: 16px;
|
2022-07-12 21:49:11 +00:00
|
|
|
`;
|
|
|
|
|
|
|
|
export default MainContainer;
|
2022-07-18 16:30:48 +00:00
|
|
|
|
|
|
|
export { TitleContainer, ContentContainer };
|
|
|
|
|