More layout fiddling and error page

This commit is contained in:
Gregory Schier
2023-03-04 22:26:00 -08:00
parent ae24cd4939
commit 8ad301a666
12 changed files with 96 additions and 40 deletions

View File

@@ -6,8 +6,8 @@ type Props = HTMLAttributes<HTMLDivElement>;
export function WindowDragRegion({ className, ...props }: Props) {
return (
<div
className={classnames(className, 'w-full h-14 flex-shrink-0')}
data-tauri-drag-region=""
data-tauri-drag-region
className={classnames(className, 'w-full h-8 flex-shrink-0 box-content')}
{...props}
/>
);