Skip to content

Commit

Permalink
stash config files
Browse files Browse the repository at this point in the history
  • Loading branch information
2nthony committed Dec 29, 2023
1 parent bbdf706 commit e041ef4
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
6 changes: 6 additions & 0 deletions site/postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {

Check warning on line 1 in site/postcss.config.js

View workflow job for this annotation

GitHub Actions / build

Assign object to a variable before exporting as module default
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}
6 changes: 2 additions & 4 deletions site/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ body {
margin: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #1e2134;
background: #fbfcfe;
}

body * {
Expand Down Expand Up @@ -52,8 +50,8 @@ body a:hover {
font-style: normal;
font-weight: 400;
src: url("/fonts/inter-v3-latin-regular.woff2") format("woff2"),
/* Super Modern Browsers */
url("/fonts/inter-v3-latin-regular.woff") format("woff");
/* Super Modern Browsers */ url("/fonts/inter-v3-latin-regular.woff")
format("woff");
}

@font-face {
Expand Down
1 change: 1 addition & 0 deletions site/src/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import store from "./store";
import "./index.css";
import "semantic-ui-css/semantic.min.css";
import "react-mde/lib/styles/css/react-mde-all.css";
import "@osn/common-ui/styles/index.css";

const root = createRoot(document.getElementById("root"));
root.render(
Expand Down
5 changes: 5 additions & 0 deletions site/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/** @type {import('tailwindcss').Config} */
export default {

Check warning on line 2 in site/tailwind.config.js

View workflow job for this annotation

GitHub Actions / build

Assign object to a variable before exporting as module default
presets: [require("@osn/common-ui/tailwind/preset.js")],
content: ["./src/**/*.{js,jsx}"],
};

0 comments on commit e041ef4

Please sign in to comment.