FIX exit on focus from some inputs
All checks were successful
Deploy React / build-and-deploy (push) Successful in 16s

This commit is contained in:
2026-03-05 09:45:27 +01:00
parent 6ca3120c9e
commit 552b2a8561
6 changed files with 73 additions and 32 deletions

View File

@@ -1,3 +1,4 @@
.chatWidget {
margin :5px;
display: flex;
@@ -12,7 +13,7 @@
display: flex;
flex-direction: row;
gap: 0.5rem;
padding: 0.75rem;
padding: 8px;
overflow-y: auto;
height: 20%;
}
@@ -61,6 +62,7 @@ width: 70%;
/* Messages */
.msg {
margin: 5px;
max-width: 70%;
padding: 0.5rem 0.75rem;
border-radius: 10px;
@@ -79,11 +81,18 @@ width: 70%;
}
.createConvBox {
margin: 5px;
display: flex;
justify-content: space-around;
}
.createConvBox > * {
margin: 5px;
}
.convUtils button {
margin: 3px;
}