1
0
mirror of synced 2025-12-23 21:07:12 -05:00

A11y fjdsklafjdsalfhdskjahfjdlsa (#40938)

This commit is contained in:
Kevin Heis
2023-08-17 15:12:29 -07:00
committed by GitHub
parent 6ce83ddd3a
commit 9ba9157629
3 changed files with 3 additions and 2 deletions

View File

@@ -33,6 +33,7 @@ export default function GQLExplorer({ mainContext, graphqlExplorerUrl }: Props)
className="border width-full"
scrolling="no"
src={graphqlExplorerUrl}
title="GitHub GraphQL API"
>
<p>You must have iframes enabled to use this feature.</p>
</iframe>

View File

@@ -19,7 +19,7 @@ export const RepoCard = ({ repo, href }: Props) => {
/>
</div>
<div className="flex-auto">
<h3>{repo.repo}</h3>
<h3 className="wb-break-word">{repo.repo}</h3>
<p className="mt-1 color-fg-muted">{repo.description}</p>
</div>
</a>

View File

@@ -19,7 +19,7 @@ export const UserCard = ({ user, href }: Props) => {
/>
</div>
<div className="flex-auto">
<h3>{user.username}</h3>
<h3 className="wb-break-word">{user.username}</h3>
<p className="mt-1 color-fg-muted">{user.description}</p>
</div>
</a>