| 1 | .addAccountModal { |
| 2 | :global { |
| 3 | h1 { |
| 4 | font-size: var(--fs-sm); |
| 5 | margin-bottom: 15px; |
| 6 | } |
| 7 | .addAccountModal_plats { |
| 8 | display: grid; |
| 9 | grid-template-columns: repeat(8, 1fr); |
| 10 | max-height: 400px; |
| 11 | overflow-y: auto; |
| 12 | &-item { |
| 13 | padding: 13px 0; |
| 14 | border-radius: 8px; |
| 15 | height: auto; |
| 16 | white-space: nowrap; |
| 17 | &-con { |
| 18 | display: flex; |
| 19 | flex-direction: column; |
| 20 | align-items: center; |
| 21 | width: 100%; |
| 22 | img { |
| 23 | width: 35px; |
| 24 | margin-bottom: 4px; |
| 25 | } |
| 26 | } |
| 27 | span { |
| 28 | font-size: var(--fs-xs); |
| 29 | } |
| 30 | } |
| 31 | } |
| 32 | } |
| 33 | } |