Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve truncation on project external links #635

Merged
merged 1 commit into from
Mar 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions web/app/components/project/index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -222,13 +222,13 @@
<ExternalLink
data-test-related-link
href={{link.url}}
class="block px-2 py-2.5 group-hover:bg-color-surface-faint"
class="block py-2.5 pl-2 pr-8 group-hover:bg-color-surface-faint"
>
<div class="flex items-center gap-3">
<div class="ml-1 flex">
<Favicon @url={{link.url}} />
</div>
<div class="flex w-full items-end gap-2">
<div class="flex w-full min-w-0 items-end gap-2">
<h4
class="max-w-[65%] truncate text-display-300 font-semibold text-color-foreground-strong"
>
Expand Down
Loading