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.
24 lines
539 B
24 lines
539 B
import styled from 'styled-components/macro'
|
|
|
|
export const PriceWrapper = styled.div`
|
|
display: flex;
|
|
align-items: flex-start;
|
|
`
|
|
|
|
export const PriceAmount = styled.span`
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
font-size: 48px;
|
|
line-height: 40px;
|
|
color: ${({ theme: { colors } }) => colors.text};
|
|
`
|
|
|
|
export const PriceDetails = styled.span`
|
|
margin-left: 5px;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
font-size: 18px;
|
|
line-height: 21px;
|
|
color: ${({ theme: { colors } }) => colors.text};
|
|
text-transform: uppercase;
|
|
`
|
|
|