Files
wok-able/assets/src/components/Header/styled.tsx
2022-03-21 01:37:16 +01:00

24 lines
475 B
TypeScript

import styled from "styled-components";
export const HeaderWrapper = styled.div`
position: fixed;
top: 0;
left: var(--navbar-width);
height: var(--toolbar-height);
width: 100%;
& > h1 {
padding: 16px;
display: flex;
align-items: center;
height: 100%;
}
`;
export const DividerWrapper = styled.div`
padding: 0;
position: absolute;
width: calc(100% + var(--navbar-width));
left: calc(0px - var(--navbar-width));
z-index: 999999999;
`;