You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
679 B
34 lines
679 B
import { Link } from 'react-router-dom'
|
|
import styled from 'styled-components/macro'
|
|
|
|
import { solidButtonStyles } from 'features/Common'
|
|
|
|
export const NextButton = styled(Link)`
|
|
${solidButtonStyles}
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
`
|
|
|
|
export const Card = styled.div`
|
|
width: 546px;
|
|
height: 340px;
|
|
margin: 20px 0;
|
|
padding: 0 32px;
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
box-sizing: border-box;
|
|
border-radius: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
`
|
|
|
|
export const Row = styled.div`
|
|
width: 100%;
|
|
display: flex;
|
|
|
|
& div:last-child {
|
|
margin-left: 16px;
|
|
}
|
|
`
|
|
|