From 02fa7ff6b1661fc7f1099bd6d9c5d4d8f148f0f1 Mon Sep 17 00:00:00 2001
From: Conrad Zelck <git@simpel.cc>
Date: Tue, 7 Dec 2021 18:32:02 +0000
Subject: [PATCH] style: adjust textarea to fit mobile devices

Removed padding left and right, as textarea growed bigger then body on
mobile divces. Made it taller too. So it won't extend height of device
to much.

Signed-off-by: Conrad Zelck <git@simpel.cc>
---
 style.css | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/style.css b/style.css
index d1e68da..14ba109 100644
--- a/style.css
+++ b/style.css
@@ -99,7 +99,9 @@ label {
 
 textarea {
   font-size: larger;
-  width: calc(100vw - 8vmin);
-  height: 76vh;
+  width: 100%;
+  padding-left: 0;
+  padding-right: 0;
+  height: 50vh;
   margin-top: 2vmin;
 }
-- 
GitLab