Skip to content

Commit b11366c

Browse files
committed
chore: finishing touches
1 parent 8bdb784 commit b11366c

26 files changed

Lines changed: 394 additions & 381 deletions

apps/app/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@
7070
"geist": "^1.3.1",
7171
"highlight.js": "^11.11.1",
7272
"immer": "^10.1.1",
73+
"install": "^0.13.0",
7374
"languine": "^3.1.4",
7475
"marked": "^15.0.11",
7576
"motion": "^12.9.2",
@@ -112,7 +113,7 @@
112113
"@types/node": "^22.15.2",
113114
"@types/react": "19.1.2",
114115
"@types/react-dom": "19.1.1",
115-
"postcss": "^8.5.3",
116+
"postcss": "^8.5.4",
116117
"tailwindcss": "^4.1.8",
117118
"typescript": "^5.8.3"
118119
},

apps/app/postcss.config.mjs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1-
import uiConfig from "@comp/ui/postcss";
1+
const config = {
2+
plugins: {
3+
"@tailwindcss/postcss": {},
4+
},
5+
};
26

3-
export default uiConfig;
7+
export default config;

apps/app/src/styles/globals.css

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
1+
@import "tailwindcss";
2+
@plugin "@tailwindcss/typography";
3+
@config "../../tailwind.config.ts";
4+
15
html,
26
body {
3-
height: 100%;
7+
height: 100%;
48
}
59

610
*:focus {
7-
outline: none;
11+
outline: none;
812
}
913

1014
.tiptap {
11-
font-size: 11px !important;
12-
line-height: 18px !important;
15+
font-size: 11px !important;
16+
line-height: 18px !important;
1317
}
1418

1519
* {
16-
-webkit-font-smoothing: antialiased;
17-
-moz-osx-font-smoothing: grayscale;
20+
-webkit-font-smoothing: antialiased;
21+
-moz-osx-font-smoothing: grayscale;
1822
}
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
module.exports = {
22
plugins: {
3-
tailwindcss: {},
4-
autoprefixer: {},
3+
"@tailwindcss/postcss": {},
54
},
6-
}
5+
};

apps/portal/postcss.config.mjs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
/** @type {import('postcss-load-config').Config} */
2-
const config = {
1+
module.exports = {
32
plugins: {
4-
tailwindcss: {},
3+
"@tailwindcss/postcss": {},
54
},
65
};
7-
8-
export default config;

apps/trust/postcss.config.mjs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
import uiConfig from "@comp/ui/postcss";
2-
3-
export default uiConfig;
1+
module.exports = {
2+
plugins: {
3+
"@tailwindcss/postcss": {},
4+
},
5+
};

bun.lock

Lines changed: 5 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)