From 2d50a0507cf7eea42af5b5b4e00d5583c78a1b03 Mon Sep 17 00:00:00 2001 From: Chrissivert <122440126+Chrissivert@users.noreply.github.com> Date: Thu, 25 Sep 2025 11:11:50 +0200 Subject: [PATCH] inputs ahve same fontsize --- src/components/createPostModal/index.js | 1 - src/components/form/textInput/style.css | 2 ++ src/pages/dashboard/style.css | 6 +++--- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/components/createPostModal/index.js b/src/components/createPostModal/index.js index a2b02c7..1d2a333 100644 --- a/src/components/createPostModal/index.js +++ b/src/components/createPostModal/index.js @@ -42,7 +42,6 @@ const CreatePostModal = ({ onPostSubmit }) => { value={text} onChange={(e) => setText(e.target.value)} placeholder="What's on your mind?" - style={{ width: '100%', resize: 'vertical' }} maxLength={280} className="create-post-user-details" /> diff --git a/src/components/form/textInput/style.css b/src/components/form/textInput/style.css index 0d9d73c..8e67132 100644 --- a/src/components/form/textInput/style.css +++ b/src/components/form/textInput/style.css @@ -8,3 +8,5 @@ .inputwrapper .icon { position: absolute; } + + diff --git a/src/pages/dashboard/style.css b/src/pages/dashboard/style.css index 8c05daf..bf1a876 100644 --- a/src/pages/dashboard/style.css +++ b/src/pages/dashboard/style.css @@ -14,9 +14,9 @@ aside { .create-post-input button { color: var(--color-blue1); - font-size: 1rem !important; - padding-left: 15px !important; - text-align: left !important; + padding-left: 15px; + text-align: left; + font-size: 18px; max-width: 100% !important; background-color: var(--color-blue5); }