From c3b72b3be624e50c396eb8312ec65f128cd1424c Mon Sep 17 00:00:00 2001 From: SauceyRed Date: Thu, 29 May 2025 15:31:36 +0200 Subject: [PATCH] feat: make send button and message input box slightly bigger --- components/MessageArea.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/MessageArea.vue b/components/MessageArea.vue index cc76cdc..63b2158 100644 --- a/components/MessageArea.vue +++ b/components/MessageArea.vue @@ -126,7 +126,6 @@ onMounted(async () => { #message-form { display: flex; justify-content: center; - height: 60%; } #message-box-input { @@ -145,11 +144,12 @@ onMounted(async () => { #submit-button { background-color: inherit; border: none; - color: white; + color: rgb(200, 200, 200); + font-size: 1.5em; } #submit-button:hover { - background-color: rgb(40, 40, 40); + color: rgb(255, 255, 255); } \ No newline at end of file