diff --git a/web/src/components/ChatComponent.vue b/web/src/components/ChatComponent.vue index 12d46b2c..b248d9bf 100644 --- a/web/src/components/ChatComponent.vue +++ b/web/src/components/ChatComponent.vue @@ -67,12 +67,19 @@
- + @@ -460,14 +467,14 @@ img.message-image { max-width: calc(1100px - 2rem); margin: 0 auto; display: flex; - align-items: center; + align-items: flex-end; background-color: #F4F4F4; border-radius: 2rem; - height: 3.5rem; + height: auto; padding: 0.5rem; } -input.user-input { +.user-input { flex: 1; height: 40px; padding: 0.5rem 1rem; @@ -478,9 +485,15 @@ input.user-input { color: #111111; font-size: 16px; font-variation-settings: 'wght' 400, 'opsz' 10.5; + outline: none; &:focus { outline: none; + box-shadow: none; + } + + &:active { + outline: none; } }