fix button size

This commit is contained in:
maxichrome 2022-05-23 05:28:22 -05:00
parent 42f30af8c9
commit a0adc39ac7
No known key found for this signature in database
GPG key ID: DDC459310E98B6AB

View file

@ -55,7 +55,7 @@ const TrafficLight: React.FC<TrafficLightProps> = (props) => {
<div
onClick={onClick}
className={clsx(
'rounded-full box-border w-[12px] h-[12px] border-[0.5px] border-transparent bg-[#CDCED0] dark:bg-[#2B2C2F] flex justify-center items-center',
'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':
type === 'close' && colorful,