24 lines
475 B
TypeScript
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;
|
|
`;
|