From 280406a2d1fa36091c22260185e2f36ac41d45b0 Mon Sep 17 00:00:00 2001
From: ali asaria <aliasaria@users.noreply.github.com>
Date: Mon, 7 Oct 2024 14:41:56 -0400
Subject: [PATCH] style plain textareas

---
 src/renderer/styles.css | 17 +++++++++++++++--
 1 file changed, 15 insertions(+), 2 deletions(-)

diff --git a/src/renderer/styles.css b/src/renderer/styles.css
index e2aec6c5..2830c50e 100644
--- a/src/renderer/styles.css
+++ b/src/renderer/styles.css
@@ -94,8 +94,10 @@ spinning gradient border effect */
 
 /* Scrollbar styles */
 ::-webkit-scrollbar {
-  width: 10px; /* for vertical scrollbars */
-  height: 10px; /* for horizontal scrollbars */
+  width: 10px;
+  /* for vertical scrollbars */
+  height: 10px;
+  /* for horizontal scrollbars */
 }
 
 ::-webkit-scrollbar-track {
@@ -105,6 +107,7 @@ spinning gradient border effect */
 ::-webkit-scrollbar-thumb {
   background: rgba(0, 0, 0, 0.25);
 }
+
 /* End Scrollbar styles */
 
 /* remove borders on button groups -- fixes up sidebar buttons at bottom */
@@ -153,3 +156,13 @@ fieldset {
   display: block;
   max-width: 300px;
 }
+
+
+textarea {
+  background-color: var(--joy-palette-background-level-1);
+  border: 1px solid rgb(209, 213, 219);
+  color: var(--joy-palette-text-tertiary);
+  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI";
+  font-size: 16px;
+  padding: 16px;
+}
\ No newline at end of file
-- 
GitLab