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 Dec 21, 2024
1 parent 3ad99f0 commit 5e7bb93
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
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
6 changes: 3 additions & 3 deletions examples/react/react-router/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ 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;
}
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
5 changes: 4 additions & 1 deletion packages/query-devtools/src/Devtools.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1622,7 +1622,10 @@ const QueryStatus: Component<QueryStatusProps> = (props) => {
css`
cursor: pointer;
&:hover {
background: ${t(colors.gray[200], colors.darkGray[400])}${alpha[80]};
background: ${t(
colors.gray[200],
colors.darkGray[400],
)}${alpha[80]};
}
`,
'tsqd-query-status-tag',
Expand Down

0 comments on commit 5e7bb93

Please sign in to comment.