This repository was archived by the owner on Oct 11, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-10
lines changed Expand file tree Collapse file tree 3 files changed +5
-10
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " Spectrum" ,
3- "version" : " 2.4.61 " ,
3+ "version" : " 2.4.62 " ,
44 "license" : " BSD-3-Clause" ,
55 "devDependencies" : {
66 "@babel/preset-flow" : " ^7.0.0" ,
Original file line number Diff line number Diff line change @@ -130,27 +130,21 @@ class Nav extends React.Component<Props, State> {
130130 to = "/features"
131131 selected = { this . props . location === 'features' }
132132 >
133- < Icon glyph = "checkmark" />
134133 Features
135- < Icon glyph = "enter" />
136134 </ FeaturesLink >
137135 < AppsLink to = "/apps" selected = { this . props . location === 'apps' } >
138- < Icon glyph = "plus" />
139136 Apps
140- < Icon glyph = "enter" />
141137 </ AppsLink >
142138 < SupportLink
143139 to = "/support"
144140 selected = { this . props . location === 'support' }
145141 >
146- < Icon glyph = "like" />
147142 Support
148143 </ SupportLink >
149144 < ExploreLink
150145 to = "/explore"
151146 selected = { this . props . location === 'explore' }
152147 >
153- < Icon glyph = "explore" />
154148 Explore
155149 </ ExploreLink >
156150 { this . props . currentUser ? (
Original file line number Diff line number Diff line change @@ -571,19 +571,19 @@ export const LogoTab = styled(Tab)`
571571
572572export const DropdownLink = styled ( Link ) `
573573 padding: 16px 0;
574- font-weight: 500;
574+ font-weight: ${ props => ( props . selected ? '600' : ' 500' ) } ;
575575 display: flex;
576576 width: 100%;
577577 align-items: center;
578578 transition: ${ Transition . hover . off } ;
579579 color: ${ props =>
580- props . selected ? props . theme . text . placeholder : props . theme . brand . alt } ;
580+ props . selected ? props . theme . brand . alt : props . theme . text . alt } ;
581581 border-radius: 8px;
582582
583583 &:hover {
584584 transition: ${ Transition . hover . on } ;
585585 color: ${ props =>
586- props . selected ? props . theme . text . alt : props . theme . brand . default } ;
586+ props . selected ? props . theme . brand . default : props . theme . text . secondary } ;
587587 }
588588` ;
589589
@@ -649,6 +649,7 @@ export const MenuContainer = styled.div`
649649 box-shadow: ${ Shadow . high } ${ props => hexa ( props . theme . bg . reverse , 0.25 ) } ;
650650 padding-top: 32px;
651651 z-index: 2;
652+ flex-direction: column;
652653` ;
653654
654655export const MenuOverlay = styled . div `
You can’t perform that action at this time.
0 commit comments