some more changes

This commit is contained in:
2022-03-21 01:37:16 +01:00
parent cb992c955a
commit c6bef04c73
62 changed files with 2293 additions and 9965 deletions

View File

@@ -0,0 +1,23 @@
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;
`;