fix(frontend): fix text overflow on releases cards

This commit is contained in:
Kentai Radiquum 2024-04-29 03:54:45 +05:00
parent 8e945429c2
commit 0d824c17db
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -23,9 +23,9 @@ export const ReleaseCard = (props) => {
/>
</div>
<div className="padding">
<h6>{`${props.title.substring(0, 30)}${
<h5 className="small">{`${props.title.substring(0, 30)}${
[...props.title].length > 30 ? "..." : ""
}`}</h6>
}`}</h5>
<p>{`${props.description.substring(0, 150)}${
[...props.description].length > 150 ? "..." : ""
}`}</p>