Skip to content

Commit c6cdbfd

Browse files
committed
Run corepack yarn run format
1 parent fe82803 commit c6cdbfd

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

src/pages/examples.module.css

+12-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,18 @@
7474

7575
.dashboard-inner :is(h1, h2, h3, h4, h5, h6) {
7676
/* This is a copypaste from Uppy; here we're making sure docusaurus styles don't override Uppy's styles */
77-
font-family: -apple-system,system-ui,BlinkMacSystemFont,Segoe UI,Segoe UI Symbol,Segoe UI Emoji,Apple Color Emoji,Roboto,Helvetica,Arial,sans-serif;
77+
font-family:
78+
-apple-system,
79+
system-ui,
80+
BlinkMacSystemFont,
81+
Segoe UI,
82+
Segoe UI Symbol,
83+
Segoe UI Emoji,
84+
Apple Color Emoji,
85+
Roboto,
86+
Helvetica,
87+
Arial,
88+
sans-serif;
7889
}
7990

8091
@media screen and (min-width: 60rem) {

src/pages/examples.tsx

+6-2
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,9 @@ function Page() {
291291
return (
292292
<Layout>
293293
<main className={styles['main']}>
294-
<Heading className={styles['h1']} as="h1">Examples</Heading>
294+
<Heading className={styles['h1']} as="h1">
295+
Examples
296+
</Heading>
295297

296298
<div className={styles['dashboard-docs-stackblitz']}>
297299
<Heading as="h2">Dashboard</Heading>
@@ -316,7 +318,9 @@ function Page() {
316318
{options.map((section) => {
317319
return (
318320
<div key={section.heading}>
319-
<Heading className={styles['h3']} as="h3">{section.heading}</Heading>
321+
<Heading className={styles['h3']} as="h3">
322+
{section.heading}
323+
</Heading>
320324
<div
321325
wrapper-for={section.heading}
322326
className={styles['options-inner']}

0 commit comments

Comments
 (0)