Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/components/Sidebar/FooterMenu.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,10 @@ export default class FooterMenu extends React.Component {
onExternalClick={() => this.setState({ show: false })}>
<div className={styles.popup}>
<a href={`${mountPath}logout`}>Log Out <span className={styles.emoji}>👋</span></a>
<a target='_blank' href='https://www.parse.com/docs/server/guide'>Server Guide <span className={styles.emoji}>📚</span></a>
<a target='_blank' href='https://www.parse.com/help'>Help <span className={styles.emoji}>💊</span></a>
<a target='_blank' href='https://parseplatform.github.io/docs/parse-server/guide'>Server Guide <span className={styles.emoji}>📚</span></a>
<a target='_blank' href='http://stackoverflow.com/questions/tagged/parse.com'>Code-level Questions <span className={styles.emoji}>❓</span></a>
<a target='_blank' href='http://stackoverflow.com/questions/tagged/parse-server'>Server Questions <span className={styles.emoji}>❓</span></a>
<a target='_blank' href='http://serverfault.com/tags/parse'>Deployment/Maintenance <span className={styles.emoji}>⚡️</span></a>
</div>
</Popover>
);
Expand Down
6 changes: 3 additions & 3 deletions src/components/Sidebar/Sidebar.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ const Sidebar = ({
})}
</div>
<div className={styles.footer}>
<a target='_blank' href='https://parseplatform.github.io'>Open Source</a>
<a target='_blank' href='https://www.parse.com/docs'>Docs</a>
<a target='_blank' href='https://parseplatform.github.io'>Downloads</a>
<a target='_blank' href='https://parseplatform.github.io'>Open Source Hub</a>
<a target='_blank' href='https://www.github.com/parseplatform'>GitHub</a>
<a target='_blank' href='https://parseplatform.github.io/docs'>Docs</a>
<FooterMenu />
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Sidebar/Sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -339,9 +339,9 @@ a.subitem {
.popup {
position: absolute;
bottom: 4px;
left: -113px;
left: -183px;
background: white;
width: 130px;
width: 200px;
border-radius: 5px;

&:after {
Expand Down