Global layout component

This commit is contained in:
Gregory Schier
2023-03-25 13:26:31 -07:00
parent 8929d736d9
commit 700c589ae2
13 changed files with 366 additions and 211 deletions

View File

@@ -15,6 +15,7 @@ import {
DragHandleDots2Icon,
EyeOpenIcon,
GearIcon,
HamburgerMenuIcon,
HomeIcon,
ListBulletIcon,
MagicWandIcon,
@@ -51,6 +52,7 @@ const icons = {
drag: DragHandleDots2Icon,
eye: EyeOpenIcon,
gear: GearIcon,
hamburger: HamburgerMenuIcon,
home: HomeIcon,
listBullet: ListBulletIcon,
magicWand: MagicWandIcon,

View File

@@ -10,7 +10,7 @@ export function WindowDragRegion({ className, ...props }: Props) {
return (
<div
data-tauri-drag-region
className={classnames(className, 'w-full h-md flex-shrink-0')}
className={classnames(className, 'w-full flex-shrink-0')}
{...props}
/>
);