1
0
Fork 0

Fix text overflow

This commit is contained in:
Chocobozzz 2024-03-08 09:39:44 +01:00
parent 371f08cbaf
commit e8955ac8ca
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 6 additions and 1 deletions

View File

@ -24,7 +24,7 @@
size="32"
></my-actor-avatar>
<div class="w-100 d-flex flex-column">
<div class="w-100 d-flex flex-column min-width-0">
<my-link
[internalLink]="videoRouterLink" [href]="videoHref" [target]="videoTarget" [inheritParentCSS]="true"
[ariaLabel]="getAriaLabel()"

View File

@ -44,3 +44,8 @@
}
}
}
// See https://css-tricks.com/flexbox-truncated-text/
.min-width-0 {
min-width: 0;
}