File size: 1,241 Bytes
1e92f2d |
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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
// @flow
import styled, { css } from 'styled-components';
import theme from 'shared/theme';
import { MEDIA_BREAK } from 'src/components/layout';
export const Emoji = styled.span`
font-size: 40px;
margin-bottom: 16px;
`;
export const Heading = styled.h3`
font-size: 24px;
font-weight: 700;
line-height: 1.3;
margin-bottom: 8px;
color: ${theme.text.default};
`;
export const Description = styled.p`
margin-top: 8px;
font-size: 16px;
font-weight: 400;
line-height: 1.4;
color: ${theme.text.secondary};
padding-right: 24px;
`;
export const ActionsRow = styled.div`
display: grid;
grid-gap: 16px;
grid-template-columns: repeat(2, 1fr);
margin-top: 32px;
button {
display: flex;
flex: 1 0 auto;
width: 100%;
}
`;
export const CardStyles = css`
background: ${theme.bg.default};
border: 1px solid ${theme.bg.border};
border-radius: 4px;
`;
export const Card = styled.div`
${CardStyles};
padding: 16px;
@media (max-width: ${MEDIA_BREAK}px) {
border-radius: 0;
border: none;
border-bottom: 1px solid ${theme.bg.border};
}
`;
export const Stretch = styled.div`
display: flex;
flex-direction: column;
flex: 1;
justify-content: center;
align-items: center;
`;
|