feat: device scanning

This commit is contained in:
2024-07-16 21:14:19 +08:00
parent 1d213eae57
commit 09e2ab50bb
25 changed files with 725 additions and 223 deletions

18
tailwind.config.ts Normal file
View File

@@ -0,0 +1,18 @@
import { Config } from "tailwindcss";
export default <Config>{
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
extend: {
fontSize: {
"2xs": [
"0.625rem",
{
lineHeight: "0.625rem",
},
],
},
},
},
plugins: [],
};