Skip to content

Commit

Permalink
Edits in response to comments
Browse files Browse the repository at this point in the history
  • Loading branch information
melissasamworth committed Feb 14, 2024
1 parent fa21c13 commit 6fbbb57
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/components/ArticlesDropdown/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const ArticlesDropdown = ({toc, categories}: ArticlesDropdownProps) => {
toc: TOCItem[]
className?: string
}) => (
<div className={'myClassName ' + (className || '')}>
<div className={(className || '')}>
<div className="default-bold">{category}</div>
{toc
.filter((item) => item.category === category)
Expand Down
4 changes: 2 additions & 2 deletions app/components/Nav/nav.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
}

.top-logo {
padding: 0 56px 0 0;
padding: 0 var(--spacing-56) 0 0;
}

.top-menu {
display: flex;
gap: 40px;
gap: var(--spacing-40);
list-style: none;
}

Expand Down
4 changes: 2 additions & 2 deletions app/newRoot.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

:root {
/* colors */
--colors-black: #000;
--colors-black: #1b2b3e;
--colors-cool-grey-900: #1b2b3e;
--colors-cool-grey-800: #3a485a;
--colors-cool-grey-700: #596676;
Expand Down Expand Up @@ -128,7 +128,7 @@ h2 {
/* color classes */

.black {
color: var(--text-black);
color: var(--colors-black, #1b2b3e);
}

.grey {
Expand Down

0 comments on commit 6fbbb57

Please sign in to comment.