Changeset View
Changeset View
Standalone View
Standalone View
cashtab/src/components/Rewards/styled.ts
| // Copyright (c) 2024 The Bitcoin developers | // Copyright (c) 2024 The Bitcoin developers | ||||
| // Distributed under the MIT software license, see the accompanying | // Distributed under the MIT software license, see the accompanying | ||||
| // file COPYING or http://www.opensource.org/licenses/mit-license.php. | // file COPYING or http://www.opensource.org/licenses/mit-license.php. | ||||
| import styled from 'styled-components'; | import styled from 'styled-components'; | ||||
| export const Wrapper = styled.div` | export const Wrapper = styled.div` | ||||
| width: 100%; | width: 100%; | ||||
| margin-top: 24px; | @media (max-width: 768px) { | ||||
| h2 { | padding: 0 10px; | ||||
| margin-bottom: 30px; | |||||
| } | } | ||||
| `; | `; | ||||
| export const ButtonContainer = styled.div` | |||||
| width: 100%; | |||||
| margin-top: 50px; | |||||
| `; | |||||
| export const ContentDiv = styled.div` | export const ContentDiv = styled.div` | ||||
| color: ${props => props.theme.primaryText}; | color: ${props => props.theme.primaryText}; | ||||
| font-size: var(--text-base); | font-size: var(--text-base); | ||||
| line-height: var(--text-base--line-height); | line-height: var(--text-base--line-height); | ||||
| margin-top: 24px; | margin-top: 24px; | ||||
| padding: 16px; | padding: 16px; | ||||
| background-color: ${props => props.theme.secondaryBackground}; | background-color: ${props => props.theme.secondaryBackground}; | ||||
| border-radius: 12px; | border-radius: 12px; | ||||
| ▲ Show 20 Lines • Show All 56 Lines • Show Last 20 Lines | |||||