DonorsListTable.tsx
3 years ago
DonorsRowActions.module.scss
3 years ago
DonorsRowActions.tsx
3 years ago
style.scss
3 years ago
style.scss
52 lines
| 1 | @use 'assets/src/css/Safe-Rem/functions' as *; |
| 2 | |
| 3 | .donorBulkModalContent { |
| 4 | .donorInformation { |
| 5 | position: relative; |
| 6 | display: flex; |
| 7 | flex-flow: column wrap; |
| 8 | align-content: flex-start; |
| 9 | justify-content: center; |
| 10 | column-gap: safe-rem(0.6125); |
| 11 | row-gap: safe-rem(0.25); |
| 12 | height: safe-rem(4); |
| 13 | width: 100%; |
| 14 | |
| 15 | & > a { |
| 16 | color: #0878b0; |
| 17 | font-size: 1.125rem; |
| 18 | font-weight: 700; |
| 19 | } |
| 20 | |
| 21 | &__email { |
| 22 | min-width: 0; |
| 23 | overflow: hidden; |
| 24 | } |
| 25 | |
| 26 | &__gravatar { |
| 27 | border-radius: 9999px; |
| 28 | width: safe-rem(4); |
| 29 | height: safe-rem(4); |
| 30 | } |
| 31 | |
| 32 | &__name { |
| 33 | display: inline; |
| 34 | inline-size: -webkit-fit-content; |
| 35 | inline-size: -moz-fit-content; |
| 36 | inline-size: fit-content; |
| 37 | font-size: safe-rem(1.125); |
| 38 | text-decoration: none; |
| 39 | } |
| 40 | |
| 41 | &__email { |
| 42 | font-style: normal; |
| 43 | font-weight: 400; |
| 44 | line-height: 150%; |
| 45 | max-width: calc(100% - 4rem); |
| 46 | white-space: nowrap; |
| 47 | text-overflow: ellipsis; |
| 48 | } |
| 49 | } |
| 50 | } |
| 51 | |
| 52 |