From 31c26a2de4615969afd256085f3b03126651cdbd Mon Sep 17 00:00:00 2001 From: Matthew Penner Date: Wed, 27 Jan 2021 23:16:58 -0700 Subject: [PATCH] ui: fix shit --- resources/scripts/components/server/Console.tsx | 3 ++- resources/scripts/index.tsx | 2 -- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/resources/scripts/components/server/Console.tsx b/resources/scripts/components/server/Console.tsx index 6594b0595..b21e27c2d 100644 --- a/resources/scripts/components/server/Console.tsx +++ b/resources/scripts/components/server/Console.tsx @@ -57,7 +57,8 @@ const TerminalDiv = styled.div` `; const CommandInput = styled.input` - ${tw`text-sm transition-colors duration-150 px-2 bg-transparent border-0 border-b-2 border-transparent text-neutral-100 p-2 pl-0 w-full focus:ring-0`} + ${tw`text-sm transition-colors duration-150 px-2 bg-transparent border-0 border-b-2 border-transparent text-neutral-100 p-2 pl-0 w-full focus:ring-0`}; + &:focus { ${tw`border-cyan-700`}; } diff --git a/resources/scripts/index.tsx b/resources/scripts/index.tsx index 4b1060022..5b7643242 100644 --- a/resources/scripts/index.tsx +++ b/resources/scripts/index.tsx @@ -4,8 +4,6 @@ import App from '@/components/App'; import './i18n'; import { setConfig } from 'react-hot-loader'; -import 'tailwindcss/dist/base.min.css'; - // Prevents page reloads while making component changes which // also avoids triggering constant loading indicators all over // the place in development.