1
0
Fork 0
freesewing/sites/shared/components/wrappers/header.mjs
Joost De Cock ddbbbda2bc chore(shared): Changes kiosk/expand/flags/header
- 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
2023-09-09 17:58:44 +02:00

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>
)