Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | 54x 54x 54x 54x 54x 54x | import styled from "@emotion/styled";
export const Container = styled.div`
background-color: #fff;
font-family: "Give Whyte", Circular, "Helvetica Neue", Helvetica, Arial,
sans-serif !important;
color: #292928;
padding-top: 20px;
min-height: 100%;
`;
export const MainContainer = styled.main`
padding: 20px;
`;
export const Wrapper = styled.div`
min-height: 100%;
max-width: 650px;
margin: auto;
`;
export const Header = styled.header`
height: 56px;
text-align: center;
@media print {
page-break-after: avoid;
break-after: avoid;
}
`;
export const Footer = styled.footer`
text-align: center;
margin: 0 auto;
margin-top: 20px;
background: #fafafa;
color: #767f84;
font-size: 14px;
`;
export const Title = styled.h2`
font-weight: 300;
font-size: 36px;
line-height: 40px;
letter-spacing: -0.03em;
margin-top: 64px;
`;
|