mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-23 16:00:38 +00:00
984425a6d1
* fix(frontend): Keep app header always on top * various fixes * fix
3 lines
211 B
TypeScript
3 lines
211 B
TypeScript
const SIDE = ['auto', 'top', 'bottom', 'left', 'right'] as const
|
|
const ALIGN = ['start', 'end'] as const
|
|
export type PopoverPlacement = `${typeof SIDE[number]}` | `${typeof SIDE[number]}-${typeof ALIGN[number]}` |