parent
a442f08ed3
commit
9403fb91c6
2 changed files with 15 additions and 0 deletions
|
@ -19,6 +19,8 @@
|
|||
width: 50px;
|
||||
background: none;
|
||||
padding: 0;
|
||||
padding-left: 10px;
|
||||
display: block !important;
|
||||
|
||||
> div {
|
||||
padding: 0;
|
||||
|
@ -40,7 +42,11 @@
|
|||
}
|
||||
|
||||
.WorkspaceTitle {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
||||
padding: 0 16px;
|
||||
margin-bottom: 12px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
|
|
|
@ -77,6 +77,15 @@ const Sidebar = React.memo((props: Props) => {
|
|||
{workspace && workspace.id !== '0' &&
|
||||
<div className='WorkspaceTitle'>
|
||||
{workspace.title}
|
||||
{Utils.isFocalboardPlugin() &&
|
||||
<>
|
||||
<div className='octo-spacer'/>
|
||||
<IconButton
|
||||
onClick={() => setHidden(true)}
|
||||
icon={<HideSidebarIcon/>}
|
||||
/>
|
||||
</>
|
||||
}
|
||||
</div>
|
||||
}
|
||||
<div className='octo-sidebar-list'>
|
||||
|
|
Loading…
Reference in a new issue