Skip to content

Commit 972946c

Browse files
ci: apply automated fixes
1 parent cc5bb30 commit 972946c

File tree

7 files changed

+22
-17
lines changed

7 files changed

+22
-17
lines changed

examples/react/nextjs/src/components/Layout.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ export const Layout = ({ children }: { children: React.ReactNode }) => {
66
{children}
77
<style jsx global>{`
88
* {
9-
font-family: Menlo, Monaco, 'Lucida Console', 'Liberation Mono',
9+
font-family:
10+
Menlo, Monaco, 'Lucida Console', 'Liberation Mono',
1011
'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New',
1112
monospace, serif;
1213
}

examples/react/playground/src/styles.css

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
body {
22
margin: 0;
33
padding: 1rem;
4-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
5-
'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
6-
'Helvetica Neue', sans-serif;
4+
font-family:
5+
-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu',
6+
'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
77
-webkit-font-smoothing: antialiased;
88
-moz-osx-font-smoothing: grayscale;
99
color: white;

examples/react/react-router/src/index.css

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ html {
88
}
99

1010
body {
11-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
12-
'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
13-
'Helvetica Neue', sans-serif;
11+
font-family:
12+
-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu',
13+
'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
1414
-webkit-font-smoothing: antialiased;
1515
-moz-osx-font-smoothing: grayscale;
1616
}
1717

1818
code {
19-
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
20-
monospace;
19+
font-family:
20+
source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
2121
}
2222

2323
html,

examples/solid/solid-start-streaming/src/app.css

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
body {
2-
font-family: Gordita, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
3-
'Helvetica Neue', sans-serif;
2+
font-family:
3+
Gordita, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
4+
sans-serif;
45
line-height: 1.5;
56
}
67

examples/svelte/playground/src/app.css

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
body {
22
margin: 0;
33
padding: 1rem;
4-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
5-
'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
6-
'Helvetica Neue', sans-serif;
4+
font-family:
5+
-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu',
6+
'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
77
-webkit-font-smoothing: antialiased;
88
-moz-osx-font-smoothing: grayscale;
99
color: white;

packages/query-devtools/src/Devtools.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -3084,7 +3084,8 @@ const stylesFactory = (
30843084
min-height: ${tokens.size[6]};
30853085
flex: 1;
30863086
padding: ${tokens.size[1]} ${tokens.size[2]};
3087-
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
3087+
font-family:
3088+
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
30883089
'Liberation Mono', 'Courier New', monospace;
30893090
border-bottom: 1px solid ${t(colors.gray[300], colors.darkGray[400])};
30903091
text-align: left;
@@ -3150,7 +3151,8 @@ const stylesFactory = (
31503151
}
31513152
31523153
& code {
3153-
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
3154+
font-family:
3155+
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
31543156
'Liberation Mono', 'Courier New', monospace;
31553157
margin: 0;
31563158
font-size: ${font.size.xs};

packages/query-devtools/src/Explorer.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,8 @@ const stylesFactory = (
532532
entry: css`
533533
& * {
534534
font-size: ${font.size.xs};
535-
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
535+
font-family:
536+
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
536537
'Liberation Mono', 'Courier New', monospace;
537538
}
538539
position: relative;

0 commit comments

Comments
 (0)