aboutsummaryrefslogtreecommitdiffstats
path: root/tooling/tailwind/native.ts
blob: 2ecab6714eefc95daa5893888d1e0831171bab83 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import type { Config } from "tailwindcss";
import { hairlineWidth } from "nativewind/theme";

import base from "./base";

export default {
  content: base.content,
  presets: [base],
  theme: {
    extend: {
      borderWidth: {
        // eslint-disable-next-line @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-assignment
        hairline: hairlineWidth(),
      },
    },
  },
} satisfies Config;