Lint all files

This commit is contained in:
jeffvli 2023-07-01 19:10:05 -07:00
parent 22af76b4d6
commit 30e52ebb54
334 changed files with 76519 additions and 75932 deletions

View file

@ -3,29 +3,29 @@ import styled from 'styled-components';
import { Titlebar } from '/@/renderer/features/titlebar/components/titlebar';
const WindowsTitlebarContainer = styled.div`
position: absolute;
z-index: 1000;
display: flex;
width: 100%;
height: 50px;
user-select: none;
-webkit-app-region: drag;
position: absolute;
z-index: 1000;
display: flex;
width: 100%;
height: 50px;
user-select: none;
-webkit-app-region: drag;
`;
const ContentContainer = styled.div`
display: flex;
height: 100%;
display: flex;
height: 100%;
`;
export const AuthLayout = () => {
return (
<>
<WindowsTitlebarContainer>
<Titlebar />
</WindowsTitlebarContainer>
<ContentContainer>
<Outlet />
</ContentContainer>
</>
);
return (
<>
<WindowsTitlebarContainer>
<Titlebar />
</WindowsTitlebarContainer>
<ContentContainer>
<Outlet />
</ContentContainer>
</>
);
};