Revert "fix: model parameter modal overflow error with flexbox in Firefox"

This commit is contained in:
twwu 2024-10-17 15:12:07 +08:00
parent 073cec0e4d
commit df6cdc45f8

View File

@ -15,7 +15,7 @@ export default function Group({ children, value, onChange, className = '' }: TRa
onChange?.(value)
}
return (
<div className={cn('flex items-center bg-gray-50 min-w-0', s.container, className)}>
<div className={cn('flex items-center bg-gray-50', s.container, className)}>
<RadioGroupContext.Provider value={{ value, onChange: onRadioChange }}>
{children}
</RadioGroupContext.Provider>