-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Various css fixes #401
Various css fixes #401
Conversation
footer, nav
toc: TOCItem[] | ||
className?: string | ||
}) => ( | ||
<div className={'myClassName ' + (className || '')}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this be myClassName
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, no classes need to be applied to component at large so I removed 'myClassName ' + , hope that is the right move.
app/components/Nav/nav.css
Outdated
@@ -16,9 +16,14 @@ | |||
width: 100%; | |||
height: 100%; | |||
} | |||
|
|||
.top-logo { | |||
padding: 0 56px 0 0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what happened to var(--spacing-56)
?
app/components/Nav/nav.css
Outdated
.top-menu { | ||
display: flex; | ||
gap: 20px; | ||
gap: 40px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
var(--spacing-40)
?
app/newRoot.css
Outdated
letter-spacing: -0.14px; | ||
font-weight: 600; | ||
} | ||
|
||
/* color classes */ | ||
|
||
.black { | ||
color: var(--colors-black, #000); | ||
color: var(--text-black); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is --text-black
defined? I can't see it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't remember adding this line, weird. Fixed now.
No description provided.