Changeset View
Changeset View
Standalone View
Standalone View
cashtab/src/components/Airdrop/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 AirdropContainer = styled.div` | |||||
| width: 100%; | |||||
| @media (max-width: 768px) { | |||||
| padding: 0 10px; | |||||
| } | |||||
| `; | |||||
| export const AirdropForm = styled.div` | export const AirdropForm = styled.div` | ||||
| margin-top: 24px; | margin-top: 24px; | ||||
| display: flex; | display: flex; | ||||
| flex-direction: column; | flex-direction: column; | ||||
| gap: 12px; | gap: 12px; | ||||
| svg { | svg { | ||||
| height: 24px; | height: 24px; | ||||
| width: 24px; | width: 24px; | ||||
| Show All 20 Lines | |||||