mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-22 15:40:07 -04:00
* Multiple minor fixes and tweaks * close context menu if no items are selected * fix * type * Update keybindings.tsx * useMatch and rspc to invalidate * fix selectable --------- Co-authored-by: nikec <nikec.job@gmail.com>
11 lines
324 B
TypeScript
11 lines
324 B
TypeScript
import { Outlet } from 'react-router';
|
|
|
|
export const Component = () => (
|
|
<div className="custom-scroll page-scroll relative flex h-full max-h-screen w-full grow-0 pt-8">
|
|
<div className="flex w-full max-w-4xl flex-col space-y-6 px-12 pb-5 pt-2">
|
|
<Outlet />
|
|
<div className="block h-4 shrink-0" />
|
|
</div>
|
|
</div>
|
|
);
|