-
Notifications
You must be signed in to change notification settings - Fork 50
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
topic sidebar styling #624
Conversation
@@ -85,7 +86,7 @@ export const Episode = ({ | |||
|
|||
return ( | |||
<EpisodeWrapper className={className} isSelected={isSelected} onClick={onClick}> | |||
{type !== 'tweet' && type !== 'person' && type !== 'guest' && ( | |||
{type !== 'tweet' && type !== 'person' && type !== 'guest' && type !== 'topic' && ( |
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.
maybe replace this with something like
const defaultViewTypes = [...]
!defaultViewTypes.includes(type)
because we have many options now
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.
Done!
flex-direction: row; | ||
|
||
svg { | ||
color: #909baa; |
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.
it would be better to use variable from color constants
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.
Ok I found this color already in colors, I'm using that one.
Changed ui for topic search results.
closes: #486
sorry i didn't read the results before I took the screenshot, that's pretty dark :(