DonorsListTable.tsx
2 years ago
DonorsRowActions.module.scss
3 years ago
DonorsRowActions.tsx
2 years ago
style.scss
3 years ago
DonorsRowActions.module.scss
40 lines
| 1 | :global { |
| 2 | td:first-child { |
| 3 | padding-block: 0; |
| 4 | |
| 5 | & > input { |
| 6 | margin-block-end: 2px; |
| 7 | } |
| 8 | } |
| 9 | } |
| 10 | |
| 11 | .action > * + ::before { |
| 12 | position: absolute; |
| 13 | content: ""; |
| 14 | inset-block: auto; |
| 15 | inset-inline-start: calc(-1.0625rem); |
| 16 | block-size: 110%; |
| 17 | inline-size: 0.125rem; |
| 18 | background-color: #dedede; |
| 19 | } |
| 20 | |
| 21 | .container { |
| 22 | position: absolute; |
| 23 | bottom: 0.125rem; |
| 24 | left: 4.6125rem; |
| 25 | display: flex; |
| 26 | align-items: center; |
| 27 | column-gap: 1.25rem; |
| 28 | word-break: keep-all; |
| 29 | |
| 30 | > * + ::before { |
| 31 | position: absolute; |
| 32 | content: ""; |
| 33 | inset-block: auto; |
| 34 | inset-inline-start: calc(2.1925rem); |
| 35 | block-size: 100%; |
| 36 | inline-size: 0.125rem; |
| 37 | background-color: #dedede; |
| 38 | } |
| 39 | } |
| 40 |