diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2025-08-25 00:06:19 +0200 | 
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2025-08-25 00:06:19 +0200 | 
| commit | 28a1f5d4eddab6eb7c9ca77346c6fa9608856dd5 (patch) | |
| tree | 563ffd32f1a6f5705c1fbf6230d5d226fd0e0e48 /rag/static | |
| parent | 6afba9079eebe867ac4f1b6073b5277513e7491b (diff) | |
Diffstat (limited to 'rag/static')
| -rw-r--r-- | rag/static/styles.tcss | 48 | 
1 files changed, 48 insertions, 0 deletions
diff --git a/rag/static/styles.tcss b/rag/static/styles.tcss new file mode 100644 index 0000000..902f60b --- /dev/null +++ b/rag/static/styles.tcss @@ -0,0 +1,48 @@ +#rag { +    background: #151515; +    color: #E1E1E1; +    height: auto; +    width: 100%; +    margin: 0 0 2 0; +    grid-size: 2 2; +} + +#history { +  scrollbar-size: 1 1; +  height: 80%; +} + +#output { +  height: 100%; +} + +#chat { +  border: round #373737; +  padding: 1; +  margin-top: 2; +  margin-right: 2; +} + +#input { +  height: 20%; +  dock: bottom; +} + +#references { +  scrollbar-size: 1 1; +  dock: right; +  border-left: solid #373737; +  height: 100%; +  width: 20%; +} + +Input { +    dock: bottom; +    align_horizontal: center; +    width: 90%; +    height: 10%; +    background: #202020; +    color: #E1E1E1; +    border: round #373737; +} +  |