
- Revamped the flags ui to be consistent with the rest - The expand setting is on by default now. Tweaks to its dialog and header - Added a new kiosk mode that will use the entire screen for the workbench - Got rid of the auto-hiding behaviour of the header which gets annoying quick
11 lines
236 B
JavaScript
11 lines
236 B
JavaScript
export const HeaderWrapper = ({ children }) => (
|
|
<header
|
|
className={`
|
|
fixed bottom-0 left-0 md:relative
|
|
bg-neutral drop-shadow-xl w-full
|
|
border-t border-solid border-base-300 z-20
|
|
`}
|
|
>
|
|
{children}
|
|
</header>
|
|
)
|