Add header component and side menu; update layout and styles

This commit is contained in:
2025-09-07 02:49:32 -04:00
parent 6b80865d6a
commit e61ba2b46a
27 changed files with 978 additions and 36 deletions

View File

@@ -12,7 +12,8 @@ export const ScreenHeader = styled.default.div`
align-items: baseline;
flex-wrap: wrap;
width: 100%;
margin: 0 0 .5rem;
margin: 0 0 0.75rem;
padding: 0 ${Theme.spacing.medium};
`;
export const ScreenHeaderControls = styled.default.div`
@@ -29,9 +30,12 @@ export const HeaderTitle = styled.default.div`
align-items: baseline;
h2 {
color: ${colors.white};
margin: 0 .5rem 0 0;
margin: 0;
font-size: 1.25rem;
font-weight: 600;
}
p {
color: ${colors.gray200};
margin: 0;
}
`;