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