Added beta label

This commit is contained in:
mgabdev 2020-03-27 19:08:19 -04:00
parent bc631b65db
commit 8c3f0363db

View File

@ -6,6 +6,7 @@ import { me } from '../initial_state'
import { makeGetAccount } from '../selectors' import { makeGetAccount } from '../selectors'
import GabLogo from '../assets/gab_logo' import GabLogo from '../assets/gab_logo'
import SidebarSectionItem from './sidebar_section_item' import SidebarSectionItem from './sidebar_section_item'
import Text from './text'
const mapStateToProps = state => { const mapStateToProps = state => {
const getAccount = makeGetAccount() const getAccount = makeGetAccount()
@ -29,8 +30,11 @@ class SidebarHeader extends ImmutablePureComponent {
return ( return (
<Fragment> <Fragment>
<h1 className={[_s.default].join(' ')}> <h1 className={[_s.default].join(' ')}>
<NavLink to='/' aria-label='Gab' className={[_s.default, _s.noSelect, _s.noUnderline, _s.height50PX, _s.justifyContentCenter, _s.cursorPointer, _s.px10].join(' ')}> <NavLink to='/' aria-label='Gab' className={[_s.default, _s.flexRow, _s.noSelect, _s.noUnderline, _s.height50PX, _s.cursorPointer, _s.px10].join(' ')}>
<GabLogo /> <GabLogo />
<Text weight='bold' color='brand' size='extraSmall' className={[_s.pb5].join(' ')}>
BETA
</Text>
</NavLink> </NavLink>
</h1> </h1>