소스 검색

fix: prevent app type description from overflowing the card (#22711)

tags/1.7.0
Nite Knite 3 달 전
부모
커밋
8fa3b3f931
No account linked to committer's email address
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      web/app/components/app/create-app-modal/index.tsx

+ 1
- 1
web/app/components/app/create-app-modal/index.tsx 파일 보기

@@ -296,7 +296,7 @@ function AppTypeCard({ icon, title, description, active, onClick }: AppTypeCardP
>
{icon}
<div className='system-sm-semibold mb-0.5 mt-2 text-text-secondary'>{title}</div>
<div className='system-xs-regular text-text-tertiary'>{description}</div>
<div className='system-xs-regular line-clamp-2 text-text-tertiary' title={description}>{description}</div>
</div>
}


Loading…
취소
저장