mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-02 19:01:40 +00:00
26 lines
524 B
TypeScript
26 lines
524 B
TypeScript
|
|
import { Outlet } from 'react-router';
|
||
|
|
import styled from 'styled-components';
|
||
|
|
import { Titlebar } from '/@/renderer/features/titlebar/components/titlebar';
|
||
|
|
|
||
|
|
const TitlebarContainer = styled.header`
|
||
|
|
position: absolute;
|
||
|
|
top: 0;
|
||
|
|
right: 0;
|
||
|
|
z-index: 5000;
|
||
|
|
height: 2.5rem;
|
||
|
|
background: var(--titlebar-bg);
|
||
|
|
-webkit-app-region: drag;
|
||
|
|
opacity: 0.85;
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const TitlebarOutlet = () => {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<TitlebarContainer>
|
||
|
|
<Titlebar />
|
||
|
|
</TitlebarContainer>
|
||
|
|
<Outlet />
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
};
|