Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Global, css } from '@emotion/react';
const EmptyMasterbar = () => (
<>
<Global
styles={ css`
:root {
--masterbar-height: 0px !important;
}
` }
/>
<header id="header" className="masterbar" />
</>
);
export default EmptyMasterbar;