show prompt responses in dialog

This commit is contained in:
2026-02-07 21:56:47 +02:00
parent 71d957882c
commit 16ab8e4207
4 changed files with 60 additions and 18 deletions

View File

@@ -1,23 +1,38 @@
body {
background-color: transparent !important;
margin: 0;
color: #f0f0f0;
background-color: transparent !important;
margin: 0;
color: #f0f0f0;
}
.window-shell {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
box-sizing: border-box;
padding: 15px;
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
box-sizing: border-box;
padding: 15px;
}
.opaque-bg {
background-color: #212121;
background-color: #212121;
}
.rounded-container {
background-color: #212121;
border-radius: 15px;
background-color: #212121;
border-radius: 15px;
}
.response-area {
width: 100%;
height: 300px;
overflow-y: scroll;
}
.msg {
margin: 1px;
border: solid 1px #808080;
}
.msg-user {
text-align: end;
}