From cf68d722b073f99618ea838992e3767fdfae17f6 Mon Sep 17 00:00:00 2001 From: Chris-1010 <122332721@umail.ucc.ie> Date: Wed, 29 Jan 2025 16:12:28 +0000 Subject: [PATCH] Minor Update: Input & Root Styles --- frontend/index.html | 4 ++-- frontend/src/components/Layout/Input.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/index.html b/frontend/index.html index 89ed825..5766ebe 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -6,8 +6,8 @@ Team Software Project - -
+ +
diff --git a/frontend/src/components/Layout/Input.tsx b/frontend/src/components/Layout/Input.tsx index 6b63b1e..535fc45 100644 --- a/frontend/src/components/Layout/Input.tsx +++ b/frontend/src/components/Layout/Input.tsx @@ -21,7 +21,7 @@ const Input: React.FC = ({ value={value} onChange={onChange} {...props} - className={`${extraClasses} p-2 rounded-[1rem] w-[20vw] focus:w-[120%] bg-black/40 border border-gray-300 focus:border-purple-500 focus:outline-purple-500 text-center text-white text-xl transition-all`} + className={`${extraClasses} p-2 rounded-[1rem] w-[20vw] focus:w-[30vw] bg-black/40 border border-gray-300 focus:border-purple-500 focus:outline-purple-500 text-center text-white text-xl transition-all`} /> ); };