浏览代码

fix: add overflow hidden to Collapse component #17009 (#17011)

tags/1.2.0
GuanMu 7 个月前
父节点
当前提交
c7fcfc863d
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      web/app/components/header/account-setting/collapse/index.tsx

+ 1
- 1
web/app/components/header/account-setting/collapse/index.tsx 查看文件

@@ -25,7 +25,7 @@ const Collapse = ({
const toggle = () => setOpen(!open)

return (
<div className={classNames('bg-background-section-burn rounded-xl', wrapperClassName)}>
<div className={classNames('bg-background-section-burn rounded-xl overflow-hidden', wrapperClassName)}>
<div className='flex cursor-pointer items-center justify-between px-3 py-2 text-xs font-medium leading-[18px] text-text-secondary' onClick={toggle}>
{title}
{

正在加载...
取消
保存