Explorar el Código

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

tags/1.7.0
Nite Knite hace 3 meses
padre
commit
8fa3b3f931
No account linked to committer's email address
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      web/app/components/app/create-app-modal/index.tsx

+ 1
- 1
web/app/components/app/create-app-modal/index.tsx Ver fichero

@@ -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>
}


Cargando…
Cancelar
Guardar