more visual polish, adjust colours and spacing
This commit is contained in:
parent
ab9da02c60
commit
38cff2d670
22 changed files with 173 additions and 140 deletions
|
@ -1,7 +1,8 @@
|
|||
import { QuartzComponentConstructor } from "./types"
|
||||
import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
|
||||
|
||||
function Spacer() {
|
||||
return <div class="spacer"></div>
|
||||
function Spacer({ displayClass }: QuartzComponentProps) {
|
||||
const className = displayClass ? `spacer ${displayClass}` : "spacer"
|
||||
return <div class={className}></div>
|
||||
}
|
||||
|
||||
export default (() => Spacer) satisfies QuartzComponentConstructor
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue