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

update to list mark up for screen readers (#23712)

This commit is contained in:
Grace Park
2021-12-14 11:58:48 -08:00
committed by GitHub
parent 7da69ac864
commit 11a01104b1
2 changed files with 4 additions and 4 deletions

View File

@@ -56,9 +56,9 @@ export const CodeExamples = () => {
<div className="d-flex flex-wrap gutter">
{(isSearching ? searchResults : productCodeExamples.slice(0, numVisible)).map((example) => {
return (
<div key={example.href} className="col-12 col-xl-4 col-lg-6 mb-4">
<li key={example.href} className="col-12 col-xl-4 col-lg-6 mb-4 list-style-none">
<CodeExampleCard example={example} />
</div>
</li>
)
})}
</div>