Skip to content

Commit

Permalink
ci: apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Feb 26, 2025
1 parent cc5bb30 commit 972946c
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 17 deletions.
3 changes: 2 additions & 1 deletion examples/react/nextjs/src/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ export const Layout = ({ children }: { children: React.ReactNode }) => {
{children}
<style jsx global>{`
* {
font-family: Menlo, Monaco, 'Lucida Console', 'Liberation Mono',
font-family:
Menlo, Monaco, 'Lucida Console', 'Liberation Mono',
'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New',
monospace, serif;
}
Expand Down
6 changes: 3 additions & 3 deletions examples/react/playground/src/styles.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
body {
margin: 0;
padding: 1rem;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
'Helvetica Neue', sans-serif;
font-family:
-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu',
'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: white;
Expand Down
10 changes: 5 additions & 5 deletions examples/react/react-router/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ html {
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
'Helvetica Neue', sans-serif;
font-family:
-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu',
'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
font-family:
source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}

html,
Expand Down
5 changes: 3 additions & 2 deletions examples/solid/solid-start-streaming/src/app.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
body {
font-family: Gordita, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
'Helvetica Neue', sans-serif;
font-family:
Gordita, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
sans-serif;
line-height: 1.5;
}

Expand Down
6 changes: 3 additions & 3 deletions examples/svelte/playground/src/app.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
body {
margin: 0;
padding: 1rem;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
'Helvetica Neue', sans-serif;
font-family:
-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu',
'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: white;
Expand Down
6 changes: 4 additions & 2 deletions packages/query-devtools/src/Devtools.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3084,7 +3084,8 @@ const stylesFactory = (
min-height: ${tokens.size[6]};
flex: 1;
padding: ${tokens.size[1]} ${tokens.size[2]};
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
font-family:
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
'Liberation Mono', 'Courier New', monospace;
border-bottom: 1px solid ${t(colors.gray[300], colors.darkGray[400])};
text-align: left;
Expand Down Expand Up @@ -3150,7 +3151,8 @@ const stylesFactory = (
}
& code {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
font-family:
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
'Liberation Mono', 'Courier New', monospace;
margin: 0;
font-size: ${font.size.xs};
Expand Down
3 changes: 2 additions & 1 deletion packages/query-devtools/src/Explorer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,8 @@ const stylesFactory = (
entry: css`
& * {
font-size: ${font.size.xs};
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
font-family:
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
'Liberation Mono', 'Courier New', monospace;
}
position: relative;
Expand Down

0 comments on commit 972946c

Please sign in to comment.