feature: remove sidebar & redesign top navbar

This commit is contained in:
Jordan Knott
2020-06-23 15:20:53 -05:00
parent fd7c006b73
commit 57382de9d0
78 changed files with 4124 additions and 465 deletions

View File

@ -58,7 +58,7 @@ const LabelManager: React.FC<Props> = ({ labels, taskLabels, onLabelToggle, onLa
onLabelEdit(label.id);
}}
>
<Pencil color="#c2c6dc" />
<Pencil width={16} height={16} />
</LabelIcon>
<CardLabel
key={label.id}

View File

@ -42,7 +42,6 @@ export const HeaderTitle = styled.span`
box-sizing: border-box;
color: #c2c6dc;
display: block;
line-height: 40px;
border-bottom: 1px solid #414561;
margin: 0 12px;
overflow: hidden;
@ -51,6 +50,13 @@ export const HeaderTitle = styled.span`
text-overflow: ellipsis;
white-space: nowrap;
z-index: 1;
height: 40px;
line-height: 18px;
font-size: 16px;
display: flex;
align-items: center;
justify-content: center;
`;
export const Content = styled.div`
@ -138,7 +144,7 @@ export const CardLabel = styled.span<{ active: boolean; color: string }>`
`;
export const CloseButton = styled.div`
padding: 10px 12px 10px 8px;
padding: 18px 18px 14px 12px;
position: absolute;
top: 0;
right: 0;
@ -312,7 +318,7 @@ export const CreateLabelButton = styled.button`
`;
export const PreviousButton = styled.div`
padding: 10px 12px 10px 8px;
padding: 18px 18px 14px 12px;
position: absolute;
top: 0;
left: 0;