Skip to content

Commit cb9f418

Browse files
chore: format
1 parent f7c3ba8 commit cb9f418

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

xata/app/root.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
import type { LinksFunction, MetaFunction } from '@remix-run/node'
1+
import type { LinksFunction, MetaFunction } from "@remix-run/node";
22
import {
33
Links,
44
LiveReload,
55
Meta,
66
Outlet,
77
Scripts,
88
ScrollRestoration,
9-
} from '@remix-run/react'
9+
} from "@remix-run/react";
1010

11-
import styles from '~/styles.css'
11+
import styles from "~/styles.css";
1212

1313
export const links: LinksFunction = () => {
14-
return [{ rel: 'stylesheet', href: styles }]
15-
}
14+
return [{ rel: "stylesheet", href: styles }];
15+
};
1616

1717
export const meta: MetaFunction = () => ({
18-
charset: 'utf-8',
19-
viewport: 'width=device-width,initial-scale=1',
20-
})
18+
charset: "utf-8",
19+
viewport: "width=device-width,initial-scale=1",
20+
});
2121

2222
export default function App() {
2323
return (
@@ -33,5 +33,5 @@ export default function App() {
3333
<LiveReload />
3434
</body>
3535
</html>
36-
)
36+
);
3737
}

xata/app/styles.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
html {
2-
--system-fonts: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
3-
Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
4-
'Segoe UI Symbol';
2+
--system-fonts: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
3+
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
4+
"Segoe UI Symbol";
55
--xata-accent: rgb(199, 8, 105);
66
--xata-accent-faded: rgba(199, 8, 105, 0.4);
77
--transition-duration: 350ms;
@@ -14,7 +14,7 @@ body {
1414
margin: 0;
1515
min-height: 100vh;
1616
overflow-x: hidden;
17-
font-family: 'Inter', var(--system-fonts);
17+
font-family: "Inter", var(--system-fonts);
1818
color: var(--text-color);
1919
background-color: var(--background-color);
2020
}
@@ -40,8 +40,8 @@ a {
4040
text-decoration: none;
4141
}
4242

43-
li a[target='_blank']::after {
44-
content: '↗';
43+
li a[target="_blank"]::after {
44+
content: "↗";
4545
position: relative;
4646
top: -1em;
4747
left: 0.5em;

0 commit comments

Comments
 (0)