@@ -45,8 +45,9 @@ export class Sidebar extends React.Component {
4545 . get ( 'notifications' , List ( ) ) . size ;
4646
4747 return (
48- < div className = "badge badge-primary text-uppercase" title = { defaultHostname } >
49- GitHub { notificationsCount }
48+ < div className = "badge-account" title = { defaultHostname } >
49+ < div className = "mr-auto name" > GitHub</ div >
50+ < div > { notificationsCount === 0 ? < span className = "octicon octicon-check" /> : notificationsCount } </ div >
5051 </ div >
5152 ) ;
5253 }
@@ -60,8 +61,13 @@ export class Sidebar extends React.Component {
6061 . get ( 'notifications' , List ( ) ) . size ;
6162
6263 return (
63- < div className = "badge badge-primary text-uppercase" key = { idx } title = { account . get ( 'hostname' ) } >
64- { accountDomain } { notificationsCount }
64+ < div
65+ key = { idx }
66+ title = { account . get ( 'hostname' ) }
67+ className = "badge-account"
68+ >
69+ < div className = "mr-auto name" > { accountDomain } </ div >
70+ < div > { notificationsCount === 0 ? < span className = "octicon octicon-check" /> : notificationsCount } </ div >
6571 </ div >
6672 ) ;
6773 } ) ;
@@ -85,7 +91,7 @@ export class Sidebar extends React.Component {
8591 ) }
8692
8793 { isEitherLoggedIn && (
88- < ul className = "nav nav-inline mb-1 " >
94+ < ul className = "nav nav-inline mb-2 " >
8995 < li className = "nav-item text-white" >
9096 < i
9197 title = "Refresh"
@@ -106,7 +112,11 @@ export class Sidebar extends React.Component {
106112 { this . _renderEnterpriseAccounts ( ) }
107113
108114 < div className = "footer" >
109- { ! ! isEitherLoggedIn && < Link to = "/enterpriselogin" className = "btn btn-block" > Add</ Link > }
115+ { ! ! isEitherLoggedIn &&
116+ < Link
117+ to = "/enterpriselogin"
118+ className = "btn btn-block btn-sm btn-outline-secondary btn-add" > Add < br /> Enterprise</ Link >
119+ }
110120
111121 { ! hasStarred && (
112122 < button className = "btn btn-block btn-sm btn-outline-secondary btn-star" onClick = { this . openBrowser } >
0 commit comments