Skip to content
Merged
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
8 changes: 4 additions & 4 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ a[class^='tag_'] {
color: white;
font-weight: bold;

&:hover {
/* &:hover {
border: 2px solid #78C740;
}
} */
}

html[data-theme="dark"] .badge {
Expand All @@ -150,9 +150,9 @@ html[data-theme="dark"] a[class^='tag_'] {
color: white;
font-weight: bold;

&:hover {
/* &:hover {
border: 2px solid #78C740;
}
} */
}

/* The following Font Awesome-related styles are for the question mark next to the Editions tags. These styles are currently not being used but might be useful later. */
Expand Down
4 changes: 2 additions & 2 deletions src/theme/TagsListInline/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ export default function TagsListInline({tags}: Props): JSX.Element {
</b> */}
<ul className={clsx(styles.tags, 'padding--none', 'margin-left--sm')}>
{tags.map(({label, permalink: tagPermalink}) => (
<li key={tagPermalink} className={styles.tag}>
<Tag label={label} permalink={tagPermalink} />
<li className={styles.tag}>
<Tag label={label} />
</li>
))}
</ul>
Expand Down