Skip to content
This repository was archived by the owner on Oct 11, 2022. It is now read-only.

Commit e3558cb

Browse files
authored
Merge pull request #4203 from withspectrum/2.4.62
2.4.62
2 parents 8d11a55 + 9e5bda1 commit e3558cb

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

src/views/pages/components/nav.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff 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 ? (

src/views/pages/style.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -571,19 +571,19 @@ export const LogoTab = styled(Tab)`
571571

572572
export 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

654655
export const MenuOverlay = styled.div`

0 commit comments

Comments
 (0)