Skip to content

Commit c79257f

Browse files
authored
Merge pull request #661 from NatanRolnik/improve-sidebar-footer-links
Update and add links to sidebar footer
2 parents fd121bd + fc9d4c0 commit c79257f

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

src/components/Sidebar/FooterMenu.react.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,10 @@ export default class FooterMenu extends React.Component {
4343
onExternalClick={() => this.setState({ show: false })}>
4444
<div className={styles.popup}>
4545
<a href={`${mountPath}logout`}>Log Out <span className={styles.emoji}>👋</span></a>
46-
<a target='_blank' href='https://www.parse.com/docs/server/guide'>Server Guide <span className={styles.emoji}>📚</span></a>
47-
<a target='_blank' href='https://www.parse.com/help'>Help <span className={styles.emoji}>💊</span></a>
46+
<a target='_blank' href='https://parseplatform.github.io/docs/parse-server/guide'>Server Guide <span className={styles.emoji}>📚</span></a>
47+
<a target='_blank' href='http://stackoverflow.com/questions/tagged/parse.com'>Code-level Questions <span className={styles.emoji}></span></a>
48+
<a target='_blank' href='http://stackoverflow.com/questions/tagged/parse-server'>Server Questions <span className={styles.emoji}></span></a>
49+
<a target='_blank' href='http://serverfault.com/tags/parse'>Deployment/Maintenance <span className={styles.emoji}>⚡️</span></a>
4850
</div>
4951
</Popover>
5052
);

src/components/Sidebar/Sidebar.react.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ const Sidebar = ({
7777
})}
7878
</div>
7979
<div className={styles.footer}>
80-
<a target='_blank' href='https://parseplatform.github.io'>Open Source</a>
81-
<a target='_blank' href='https://www.parse.com/docs'>Docs</a>
82-
<a target='_blank' href='https://parseplatform.github.io'>Downloads</a>
80+
<a target='_blank' href='https://parseplatform.github.io'>Open Source Hub</a>
81+
<a target='_blank' href='https://www.github.com/parseplatform'>GitHub</a>
82+
<a target='_blank' href='https://parseplatform.github.io/docs'>Docs</a>
8383
<FooterMenu />
8484
</div>
8585
</div>

src/components/Sidebar/Sidebar.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -339,9 +339,9 @@ a.subitem {
339339
.popup {
340340
position: absolute;
341341
bottom: 4px;
342-
left: -113px;
342+
left: -183px;
343343
background: white;
344-
width: 130px;
344+
width: 200px;
345345
border-radius: 5px;
346346

347347
&:after {

0 commit comments

Comments
 (0)