Skip to content

Commit

Permalink
style(explorer): fix code style with prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
vplasencia committed Nov 27, 2024
1 parent c719241 commit 77fff73
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 deletions apps/explorer/postcss.config.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/** @type {import('postcss-load-config').Config} */
const config = {
plugins: {
tailwindcss: {},
},
};
plugins: {
tailwindcss: {}
}
}

export default config;
export default config
24 changes: 12 additions & 12 deletions apps/explorer/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@
@tailwind utilities;

:root {
--background: #ffffff;
--foreground: #171717;
--background: #ffffff;
--foreground: #171717;
}

@media (prefers-color-scheme: dark) {
:root {
--background: #ECECEC;
--foreground: #222222;
}
:root {
--background: #ececec;
--foreground: #222222;
}
}

body {
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
}

@layer utilities {
.text-balance {
text-wrap: balance;
}
.text-balance {
text-wrap: balance;
}
}

0 comments on commit 77fff73

Please sign in to comment.