Some minor tweaks

This commit is contained in:
Gregory Schier
2023-02-21 17:56:48 -08:00
parent 45b7bc2c84
commit 30b1b87fea
6 changed files with 13 additions and 10 deletions

View File

@@ -6,7 +6,7 @@ type Props = HTMLAttributes<HTMLDivElement>;
export function WindowDragRegion({ className, ...props }: Props) {
return (
<div
className={classnames(className, 'w-full h-11 border-b border-gray-500/10')}
className={classnames(className, 'w-full h-11 flex-shrink-0 border-b border-gray-500/10')}
data-tauri-drag-region=""
{...props}
/>