Skip to content

Commit 77fff73

Browse files
committed
style(explorer): fix code style with prettier
1 parent c719241 commit 77fff73

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

apps/explorer/postcss.config.mjs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/** @type {import('postcss-load-config').Config} */
22
const config = {
3-
plugins: {
4-
tailwindcss: {},
5-
},
6-
};
3+
plugins: {
4+
tailwindcss: {}
5+
}
6+
}
77

8-
export default config;
8+
export default config

apps/explorer/src/app/globals.css

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@
33
@tailwind utilities;
44

55
:root {
6-
--background: #ffffff;
7-
--foreground: #171717;
6+
--background: #ffffff;
7+
--foreground: #171717;
88
}
99

1010
@media (prefers-color-scheme: dark) {
11-
:root {
12-
--background: #ECECEC;
13-
--foreground: #222222;
14-
}
11+
:root {
12+
--background: #ececec;
13+
--foreground: #222222;
14+
}
1515
}
1616

1717
body {
18-
color: var(--foreground);
19-
background: var(--background);
20-
font-family: Arial, Helvetica, sans-serif;
18+
color: var(--foreground);
19+
background: var(--background);
20+
font-family: Arial, Helvetica, sans-serif;
2121
}
2222

2323
@layer utilities {
24-
.text-balance {
25-
text-wrap: balance;
26-
}
24+
.text-balance {
25+
text-wrap: balance;
26+
}
2727
}

0 commit comments

Comments
 (0)