From ce56e37a334887312002558f40b4801ffe584174 Mon Sep 17 00:00:00 2001 From: Anthony Debucquoy Date: Fri, 29 Mar 2024 14:31:22 +0100 Subject: [PATCH] redesign send bar --- frontend/src/Apps/Msg.vue | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/frontend/src/Apps/Msg.vue b/frontend/src/Apps/Msg.vue index a5aa1f4..e95f474 100644 --- a/frontend/src/Apps/Msg.vue +++ b/frontend/src/Apps/Msg.vue @@ -143,6 +143,7 @@ div#discussion{ margin: 30px; background-color: rgba(255, 255, 255, 0.05); border-radius: 10px; + overflow: hidden; } #msgName{ @@ -181,21 +182,19 @@ div#discussion{ } #messageBox{ + width: 100%; + height: 30px; + background-color: white; display: flex; - margin: 10px; - border-radius: 5px; } #messageBox input[type="text"]{ - align-self: end; - flex-grow: 1; + all: inherit; + padding: 0 10px; } #messageBox input[type="submit"]{ - position: absolute; - right: 50px; - margin: 2px; - border: none; + border: inherit; padding: 0 10px; }