| 1 | .container { |
| 2 | .headerCard { |
| 3 | margin-bottom: 24px; |
| 4 | background: #fafafa; |
| 5 | border-radius: 8px; |
| 6 | |
| 7 | .header { |
| 8 | display: flex; |
| 9 | justify-content: space-between; |
| 10 | align-items: center; |
| 11 | |
| 12 | .title { |
| 13 | margin: 0; |
| 14 | color: #262626; |
| 15 | } |
| 16 | |
| 17 | .withdrawButton { |
| 18 | height: 40px; |
| 19 | padding: 0 24px; |
| 20 | } |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | .tableCard { |
| 25 | background: white; |
| 26 | border-radius: 8px; |
| 27 | box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); |
| 28 | |
| 29 | .table { |
| 30 | :global { |
| 31 | .ant-table-thead > tr > th { |
| 32 | background: #fafafa; |
| 33 | font-weight: 500; |
| 34 | } |
| 35 | } |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | .modal { |
| 40 | :global { |
| 41 | .ant-modal-content { |
| 42 | border-radius: 8px; |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | .input { |
| 47 | height: 40px; |
| 48 | } |
| 49 | } |
| 50 | } |