blob: 73d891b9621211a499a8f470521e983d6fee9c99 [file] [log] [blame]
swissChili16de3222024-03-08 17:55:11 -05001.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
9html {
10 overflow: hidden;
11}
12
13body {
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;
swissChili4f0a0a82024-03-08 18:58:38 -050026 grid-template-rows: min-content 1fr min-content;
swissChili16de3222024-03-08 17:55:11 -050027 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
swissChili4f0a0a82024-03-08 18:58:38 -050037.bottom-menu {
38 font-size: 0.85rem!important;
39 display: grid;
40 grid-template-columns: 1fr auto;
41 margin-top: 8px;
42}
43
swissChili16de3222024-03-08 17:55:11 -050044table {
45 width: 100%;
46 border-collapse: collapse;
47 margin: 0;
48 background: white;
swissChili16de3222024-03-08 17:55:11 -050049 table-layout: fixed;
swissChili4f0a0a82024-03-08 18:58:38 -050050 font-size: 0.85rem!important;
swissChili16de3222024-03-08 17:55:11 -050051}
52td {
53 padding: 2px 4px;
54}
55
56thead {
57 background: rgb(242,242,247);
58 color: rgb(72,72,74);
59 position: sticky;
60 top: 0;
61}
62
63td:last-child {
64 text-align: right;
65}