aboutsummaryrefslogtreecommitdiffstats
path: root/tooling/tailwind/native.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tooling/tailwind/native.ts')
-rw-r--r--tooling/tailwind/native.ts10
1 files changed, 9 insertions, 1 deletions
diff --git a/tooling/tailwind/native.ts b/tooling/tailwind/native.ts
index 7441221e..2ecab671 100644
--- a/tooling/tailwind/native.ts
+++ b/tooling/tailwind/native.ts
@@ -1,9 +1,17 @@
import type { Config } from "tailwindcss";
+import { hairlineWidth } from "nativewind/theme";
import base from "./base";
export default {
content: base.content,
presets: [base],
- theme: {},
+ theme: {
+ extend: {
+ borderWidth: {
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-assignment
+ hairline: hairlineWidth(),
+ },
+ },
+ },
} satisfies Config;