Skip to content
Snippets Groups Projects
Unverified Commit 783c324d authored by Gustavo Saiani's avatar Gustavo Saiani Committed by GitHub
Browse files

Tweak bulk action bar height (#22617)

parent d0ca4ba6
No related branches found
No related tags found
No related merge requests found
......@@ -15,9 +15,13 @@ export const ArchiveBody = styled.div`
`;
export const ArchiveBarContent = styled.div`
display: flex;
align-items: center;
padding: 1rem 4rem;
display: flex;
// Height is hard-set so it remains
// the same as the ProfileLinkContainer
// in MainNavbar
height: 48px;
padding: 8px 4rem 7px;
`;
export const ArchiveBarText = styled.div`
......
......@@ -136,6 +136,10 @@ export const LoadingTitle = styled.h2`
export const ProfileLinkContainer = styled.div<{ isOpen: boolean }>`
position: fixed;
bottom: 0;
// Height is hard-set so it remains
// the same as the ArchiveBarContent
// in ArchiveApp
height: 49px;
left: 0;
padding: ${space(0)};
width: ${props => (props.isOpen ? NAV_SIDEBAR_WIDTH : 0)};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment