From 5e352c201fc2f731ca5f713ecb6901527ef354da Mon Sep 17 00:00:00 2001 From: sct Date: Fri, 22 Jan 2021 14:08:10 +0000 Subject: [PATCH] fix(frontend): fixed mismatched rounded sizing on new login also fixes log filename in temp log page fixes #721 --- src/components/Login/index.tsx | 10 +++++----- src/components/Settings/SettingsLogs/index.tsx | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/Login/index.tsx b/src/components/Login/index.tsx index 1b1cee181..3a81a08c8 100644 --- a/src/components/Login/index.tsx +++ b/src/components/Login/index.tsx @@ -56,7 +56,7 @@ const Login: React.FC = () => { }, [user, router]); return ( -
+
{ {({ openIndexes, handleClick, AccordionContent }) => ( <> -
+
setAuthToken(authToken)} @@ -143,14 +143,14 @@ const Login: React.FC = () => { className={`text-sm w-full focus:outline-none transition-colors duration-200 py-2 bg-gray-800 hover:bg-gray-700 bg-opacity-70 hover:bg-opacity-70 text-center text-gray-400 ${ openIndexes.includes(1) ? 'text-indigo-500' - : 'rounded-b-xl ' + : 'sm:rounded-b-lg ' }`} onClick={() => handleClick(1)} > {intl.formatMessage(messages.signinwithoverseerr)} -
+
diff --git a/src/components/Settings/SettingsLogs/index.tsx b/src/components/Settings/SettingsLogs/index.tsx index 9c6d9cf79..814909bd2 100644 --- a/src/components/Settings/SettingsLogs/index.tsx +++ b/src/components/Settings/SettingsLogs/index.tsx @@ -5,10 +5,10 @@ import React from 'react'; const SettingsLogs: React.FC = () => { return ( <> -
+
Logs page is still being built. For now, you can access your logs directly in stdout (container logs) or looking in{' '} - /app/config/logs/overseerr.logs + /app/config/logs/overseerr.log
);