Merge branch 'temp-landing-deploy' into jamie-unsorted-changes

This commit is contained in:
maxichrome 2022-05-23 06:38:57 -05:00
commit f9040bf9fc
No known key found for this signature in database
GPG key ID: DDC459310E98B6AB

View file

@ -18,7 +18,7 @@ export const MacTrafficLights: React.FC<TrafficLightsProps> = (props) => {
return (
<div
data-tauri-drag-region
className={clsx('flex flex-row space-x-[8px] group', props.className)}
className={clsx('flex flex-row space-x-[7.5px] group', props.className)}
>
<TrafficLight type="close" onClick={props.onClose} colorful={focused} />
<TrafficLight type="minimize" onClick={props.onMinimize} colorful={focused} />
@ -57,7 +57,7 @@ const TrafficLight: React.FC<TrafficLightProps> = (props) => {
className={clsx(
'rounded-full box-content w-[12px] h-[12px] border-[0.5px] border-transparent bg-[#CDCED0] dark:bg-[#2B2C2F] flex justify-center items-center',
{
'border-red-900 !bg-[#EC6A5E] active:hover:!bg-red-700 dark:active:hover:!bg-red-400':
'border-red-900 !bg-[#EC6A5E] active:hover:!bg-red-700 dark:active:hover:!bg-red-300':
type === 'close' && colorful,
'border-yellow-900 !bg-[#F4BE4F] active:hover:!bg-yellow-600 dark:active:hover:!bg-yellow-200':
type === 'minimize' && colorful,