toc
Jacky Zhao
2023-06-10 b8c011410d6bcd6837f4efd6a3948196a0f7aeea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { QuartzComponentProps } from "./types"
 
export default function Header({ children }: QuartzComponentProps) {
  return <header>
    {children}
  </header>
}
 
Header.css = `
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 1em 0 2em 0;
  & > h1 {
  }
}
 
header > h1 {
  margin: 0;
  flex: auto;
}
`