mirror of
https://github.com/simstudioai/sim.git
synced 2026-02-11 15:14:53 -05:00
* feat(workflow-controls): added action bar for picker/hand/undo/redo/zoom workflow controls, added general setting to disable * added util for fit to zoom that accounts for sidebar, terminal, and panel * ack PR comments * remove dead state variable, add logs * improvement(ui/ux): action bar, panel, tooltip, dragging, invite modal * added fit to view in canvas context menu * fix(theme): dark mode flash * fix: duplicate fit to view * refactor: popovers; improvement: notifications, diff controls, action bar * improvement(action-bar): ui/ux * refactor(action-bar): renamed to workflow controls * ran migrations * fix: deleted migration --------- Co-authored-by: Emir Karabeg <emirkarabeg@berkeley.edu>
13 lines
378 B
TypeScript
13 lines
378 B
TypeScript
'use client'
|
|
|
|
import { season } from '@/app/_styles/fonts/season/season'
|
|
|
|
export default function TemplatesLayoutClient({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<div className={`${season.variable} relative flex min-h-screen flex-col font-season`}>
|
|
<div className='-z-50 pointer-events-none fixed inset-0 bg-white' />
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|