File size: 267 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { Global, css } from '@emotion/react';

const EmptyMasterbar = () => (
	<>
		<Global
			styles={ css`
				:root {
					--masterbar-height: 0px !important;
				}
			` }
		/>
		<header id="header" className="masterbar" />
	</>
);

export default EmptyMasterbar;