Changeset View
Changeset View
Standalone View
Standalone View
cashtab/src/components/Receive/styled.tsx
| Show First 20 Lines • Show All 47 Lines • ▼ Show 20 Lines | export const FirmaRow = styled.div<{ qrWidth: number }>` | ||||
| /* Align switch with the input field (not the error message) */ | /* Align switch with the input field (not the error message) */ | ||||
| & > div:first-child { | & > div:first-child { | ||||
| margin-top: 12px; | margin-top: 12px; | ||||
| } | } | ||||
| `; | `; | ||||
| export const ReceiveCtn = styled.div` | export const ReceiveCtn = styled.div` | ||||
| width: 100%; | width: 100%; | ||||
| @media (max-width: 768px) { | |||||
| padding: 0 10px; | |||||
| } | |||||
| h2 { | h2 { | ||||
| color: ${props => props.theme.primaryText}; | color: ${props => props.theme.primaryText}; | ||||
| margin: 0 0 20px; | margin: 0 0 20px; | ||||
| margin-top: 10px; | margin-top: 10px; | ||||
| } | } | ||||
| ${ReceiveFormFlex} { | ${ReceiveFormFlex} { | ||||
| padding-top: 12px; | padding-top: 12px; | ||||
| background: ${props => props.theme.primaryBackground}; | |||||
| padding: 20px; | padding: 20px; | ||||
| border-radius: 10px; | |||||
| } | } | ||||
| `; | `; | ||||