more visual polish, adjust colours and spacing

This commit is contained in:
Jacky Zhao
2023-07-04 16:48:36 -07:00
parent 1547c8af0d
commit a90142ba2d
22 changed files with 173 additions and 140 deletions

View File

@@ -4,9 +4,7 @@ export default ((component?: QuartzComponent) => {
if (component) {
const Component = component
function DesktopOnly(props: QuartzComponentProps) {
return <div class="desktop-only">
<Component {...props} />
</div>
return <Component displayClass="desktop-only" {...props} />
}
DesktopOnly.displayName = component.displayName