mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 17:56:25 +00:00
Merge pull request #1133 from BoostIO/add-Community-on-tab
Add community on tab in preferences
This commit is contained in:
@@ -68,7 +68,36 @@ class InfoTab extends React.Component {
|
|||||||
render () {
|
render () {
|
||||||
return (
|
return (
|
||||||
<div styleName='root'>
|
<div styleName='root'>
|
||||||
<div styleName='header'>Info</div>
|
|
||||||
|
<div styleName='header--sub'>Community</div>
|
||||||
|
<div styleName='top'>
|
||||||
|
<ul styleName='list'>
|
||||||
|
<li>
|
||||||
|
<a href='https://github.com/BoostIO/Boostnote/issues'
|
||||||
|
onClick={(e) => this.handleLinkClick(e)}
|
||||||
|
>GitHub</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href='https://medium.com/boostnote'
|
||||||
|
onClick={(e) => this.handleLinkClick(e)}
|
||||||
|
>Blog</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href='https://www.reddit.com/r/Boostnote/'
|
||||||
|
onClick={(e) => this.handleLinkClick(e)}
|
||||||
|
>Reddit</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href='https://twitter.com/boostnoteapp'
|
||||||
|
onClick={(e) => this.handleLinkClick(e)}
|
||||||
|
>Twitter</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
<div styleName='header--sub'>Info</div>
|
||||||
|
|
||||||
<div styleName='top'>
|
<div styleName='top'>
|
||||||
<div styleName='icon-space'>
|
<div styleName='icon-space'>
|
||||||
@@ -81,27 +110,13 @@ class InfoTab extends React.Component {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ul styleName='list'>
|
<ul styleName='list'>
|
||||||
<li>
|
<li>
|
||||||
<a href='https://boostnote.io'
|
<a href='https://boostnote.io'
|
||||||
onClick={(e) => this.handleLinkClick(e)}
|
onClick={(e) => this.handleLinkClick(e)}
|
||||||
>Website</a>
|
>Website</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
|
||||||
<a href='https://medium.com/boostnote'
|
|
||||||
onClick={(e) => this.handleLinkClick(e)}
|
|
||||||
>Blog</a> : We have publishing the tips.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href='https://opencollective.com/boostnoteio'
|
|
||||||
onClick={(e) => this.handleLinkClick(e)}
|
|
||||||
>Crowdfunding</a> : Thank you for your support.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href='https://github.com/BoostIO/Boostnote/issues'
|
|
||||||
onClick={(e) => this.handleLinkClick(e)}
|
|
||||||
>GitHub Repository and Issue</a> : We'd love to hear your feedback!
|
|
||||||
</li>
|
|
||||||
<li>
|
<li>
|
||||||
<a href='https://github.com/BoostIO/Boostnote/blob/master/docs/build.md'
|
<a href='https://github.com/BoostIO/Boostnote/blob/master/docs/build.md'
|
||||||
onClick={(e) => this.handleLinkClick(e)}
|
onClick={(e) => this.handleLinkClick(e)}
|
||||||
|
|||||||
@@ -13,6 +13,10 @@ $tab--dark-text-color = #E5E5E5
|
|||||||
font-size 36px
|
font-size 36px
|
||||||
margin-bottom 60px
|
margin-bottom 60px
|
||||||
|
|
||||||
|
.header--sub
|
||||||
|
font-size 36px
|
||||||
|
margin-bottom 20px
|
||||||
|
|
||||||
body[data-theme="dark"]
|
body[data-theme="dark"]
|
||||||
.header
|
.header
|
||||||
color $tab--dark-text-color
|
color $tab--dark-text-color
|
||||||
|
|||||||
@@ -100,7 +100,7 @@ class Preferences extends React.Component {
|
|||||||
{target: 'STORAGES', label: 'Storages'},
|
{target: 'STORAGES', label: 'Storages'},
|
||||||
{target: 'HOTKEY', label: 'Hotkey'},
|
{target: 'HOTKEY', label: 'Hotkey'},
|
||||||
{target: 'UI', label: 'UI'},
|
{target: 'UI', label: 'UI'},
|
||||||
{target: 'INFO', label: 'Info'},
|
{target: 'INFO', label: 'Community / Info'},
|
||||||
{target: 'CROWDFUNDING', label: 'Crowdfunding'}
|
{target: 'CROWDFUNDING', label: 'Crowdfunding'}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user