give
/
src
/
EventTickets
/
resources
/
admin
/
components
/
EventTicketsListTable
/
EventTicketsListTable.module.scss
EventTicketsListTable.module.scss
1 year ago
EventTicketsRowActions.tsx
2 years ago
index.tsx
1 year ago
types.ts
2 years ago
EventTicketsListTable.module.scss
52 lines
| 1 | .listTable { |
| 2 | :global { |
| 3 | .event-description { |
| 4 | p { |
| 5 | display: -webkit-box; |
| 6 | -webkit-line-clamp: 2; |
| 7 | -webkit-box-orient: vertical; |
| 8 | overflow: hidden; |
| 9 | text-overflow: ellipsis; |
| 10 | } |
| 11 | } |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | |
| 16 | .container { |
| 17 | text-align: center; |
| 18 | color: #424242; |
| 19 | margin: var(--givewp-spacing-2) 0; |
| 20 | |
| 21 | img { |
| 22 | margin-bottom: 1rem; |
| 23 | } |
| 24 | |
| 25 | > h3 { |
| 26 | font-size: 1.125rem; |
| 27 | line-height: 1.22; |
| 28 | margin: 0; |
| 29 | padding: 0; |
| 30 | } |
| 31 | |
| 32 | > p:last-child { |
| 33 | margin-bottom: 0; |
| 34 | } |
| 35 | |
| 36 | .helpMessage { |
| 37 | font-size: 0.875rem; |
| 38 | font-weight: 400; |
| 39 | line-height: 1.57; |
| 40 | } |
| 41 | |
| 42 | .button { |
| 43 | border-radius: var(--givewp-rounded-4); |
| 44 | font-size: 1rem; |
| 45 | font-weight: 500; |
| 46 | line-height: 1.5; |
| 47 | min-width: 13.75rem; |
| 48 | padding: var(--givewp-spacing-3) var(--givewp-spacing-8); |
| 49 | text-align: center; |
| 50 | } |
| 51 | } |
| 52 |