From 50ee7232f3c98fe24a1f2e31dba9508cfec14887 Mon Sep 17 00:00:00 2001 From: gjj <Ganjj@probim.com.cn> Date: Fri, 21 Feb 2025 17:35:39 +0800 Subject: [PATCH] 模型预览 --- tailwind.config.js | 23 +++++++++++++++++++++++ 1 files changed, 23 insertions(+), 0 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..7944e5d --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,23 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"], + theme: { + extend: { + fontFamily: { + pingfang: ["PingFang SC Semibold", "PingFang SC Regular", "PingFang SC Medium", "Microsoft YaHei"], + "pingfang-medium": ["PingFang SC Medium", "Microsoft YaHei"], + "pingfang-regular": ["PingFang SC Regular", "Microsoft YaHei"], + "pingfang-light": ["PingFang SC Light", "平方 细体", "Microsoft YaHei"], + ding: ["DINEngschrift-Alternate"], + }, + spacing: { + 4.5: "1.125rem", + 18: "4.5rem", + }, + borderRadius: { + half: "50%", + }, + }, + }, + plugins: [], +}; -- Gitblit v1.9.3