swissChili | 16de322 | 2024-03-08 17:55:11 -0500 | [diff] [blame] | 1 | .query-row { |
| 2 | display: grid; |
| 3 | grid-template-columns: 3fr 2fr min-content; |
| 4 | width: 100%; |
| 5 | grid-gap: 8px; |
| 6 | margin-bottom: 0; |
| 7 | } |
| 8 | |
| 9 | html { |
| 10 | overflow: hidden; |
| 11 | } |
| 12 | |
| 13 | body { |
| 14 | font-family: system-ui; |
| 15 | overflow: hidden; |
| 16 | position: fixed; |
| 17 | width: 100vw; |
| 18 | height: 100vh; |
| 19 | margin: 0; |
| 20 | padding: 8px; |
| 21 | box-sizing: border-box; |
| 22 | } |
| 23 | |
| 24 | #app { |
| 25 | display: grid; |
swissChili | 4f0a0a8 | 2024-03-08 18:58:38 -0500 | [diff] [blame^] | 26 | grid-template-rows: min-content 1fr min-content; |
swissChili | 16de322 | 2024-03-08 17:55:11 -0500 | [diff] [blame] | 27 | width: 100%; |
| 28 | height: 100%; |
| 29 | } |
| 30 | |
| 31 | .table-container { |
| 32 | overflow-y: scroll; |
| 33 | margin-top: 8px; |
| 34 | /* border: 1px solid gray;*/ |
| 35 | } |
| 36 | |
swissChili | 4f0a0a8 | 2024-03-08 18:58:38 -0500 | [diff] [blame^] | 37 | .bottom-menu { |
| 38 | font-size: 0.85rem!important; |
| 39 | display: grid; |
| 40 | grid-template-columns: 1fr auto; |
| 41 | margin-top: 8px; |
| 42 | } |
| 43 | |
swissChili | 16de322 | 2024-03-08 17:55:11 -0500 | [diff] [blame] | 44 | table { |
| 45 | width: 100%; |
| 46 | border-collapse: collapse; |
| 47 | margin: 0; |
| 48 | background: white; |
swissChili | 16de322 | 2024-03-08 17:55:11 -0500 | [diff] [blame] | 49 | table-layout: fixed; |
swissChili | 4f0a0a8 | 2024-03-08 18:58:38 -0500 | [diff] [blame^] | 50 | font-size: 0.85rem!important; |
swissChili | 16de322 | 2024-03-08 17:55:11 -0500 | [diff] [blame] | 51 | } |
| 52 | td { |
| 53 | padding: 2px 4px; |
| 54 | } |
| 55 | |
| 56 | thead { |
| 57 | background: rgb(242,242,247); |
| 58 | color: rgb(72,72,74); |
| 59 | position: sticky; |
| 60 | top: 0; |
| 61 | } |
| 62 | |
| 63 | td:last-child { |
| 64 | text-align: right; |
| 65 | } |