Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion web/src/layout/common/Card.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@

.repoInfo {
opacity: 75%;
min-width: 0;
}

.tooltipMessage {
Expand Down Expand Up @@ -206,7 +207,6 @@
.repoInfo {
font-size: 0.85rem;
width: 100%;
min-width: 0;
}

.repoLink,
Expand Down
12 changes: 6 additions & 6 deletions web/src/layout/common/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -283,28 +283,28 @@ const Card = (props: Props) => {
<div className={`d-flex flex-row align-items-baseline ${styles.repoInfo}`}>
<div className="d-flex d-sm-none text-truncate">
<div className="d-flex flex-row align-items-center text-truncate">
<FaGithub className="me-2" />
<FaGithub className="flex-shrink-0 me-2" />
<div
className={`text-uppercase text-nowrap fw-bold text-truncate position-relative ${styles.repoName}`}
>
{props.issue.repository.name}
</div>
<FiExternalLink className="d-none d-md-block ms-2" />
<FiExternalLink className="d-none d-md-block ms-2 flex-shrink-0" />
</div>
</div>
<ExternalLink
className={`d-none d-sm-flex btn btn-link p-0 ${styles.repoLink}`}
className={`d-none d-sm-flex btn btn-link p-0 text-truncate ${styles.repoLink}`}
label={`Repo ${props.issue.repository.name} link`}
href={props.issue.repository.url}
>
<div className="d-flex flex-row align-items-center">
<FaGithub className="me-2" />
<div className="d-flex flex-row align-items-center text-truncate">
<FaGithub className="flex-shrink-0 me-2" />
<div
className={`text-uppercase text-nowrap fw-bold text-truncate position-relative ${styles.repoName}`}
>
{props.issue.repository.name}
</div>
<FiExternalLink className="d-none d-md-block ms-2" />
<FiExternalLink className="d-none d-md-block ms-2 flex-shrink-0" />
</div>
</ExternalLink>

Expand Down