Skip to content

Commit

Permalink
docs: use ul for links list
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasheartman committed Jan 31, 2024
1 parent 2fa8241 commit 2021a41
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions website/src/components/unleash-academy/Links.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const links = [
const Component = () => {
return (
<div className='links-container'>
<ol className='links-wrapper'>
<ul className='links-wrapper'>
{links.map(({ level, header, description, link }) => (
<li key={header}>
<LinkBox
Expand All @@ -57,7 +57,7 @@ const Component = () => {
/>
</li>
))}
</ol>
</ul>
</div>
);
};
Expand Down
4 changes: 2 additions & 2 deletions website/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ html[data-theme='dark'] .links-container {
--border-color: var(--ifm-color);


ol {
ul {
list-style: none;
margin: 0;
padding: 0;
Expand Down Expand Up @@ -304,7 +304,7 @@ html[data-theme='dark'] .links-container {
}

@media (711px <= width <= 996px), (min-width: 1247px) {
ol {
ul {
display: grid;
grid-template-columns: repeat(3, 1fr);
}
Expand Down

0 comments on commit 2021a41

Please sign in to comment.