From c139d1c4ecfc45bd1e2b95e23a29eec75d04db5e Mon Sep 17 00:00:00 2001
From: Gary Gu <garygu@Garydebijibendiannao.local>
Date: Wed, 28 May 2025 15:06:03 +0800
Subject: [PATCH] feat: 增加实况默认选中

---
 tailwind.config.js |   55 +++++++++++++++++++++++++++++++++++--------------------
 1 files changed, 35 insertions(+), 20 deletions(-)

diff --git a/tailwind.config.js b/tailwind.config.js
index 7944e5d..10bff87 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -1,23 +1,38 @@
+/*
+ * @Author: gjj Ganjj@probim.com.cn
+ * @Date: 2025-02-14 14:32:19
+ * @LastEditors: gjj Ganjj@probim.com.cn
+ * @LastEditTime: 2025-03-17 13:35:25
+ * @FilePath: \北京交通大学\tailwind.config.js
+ * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
+ */
 /** @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%",
-      },
+    content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
+    theme: {
+        screens: {
+            'sm': '640px',
+            'md': '768px',
+            'lg': '1024px',
+            'xl': '1280px',
+            '2xl': '1536px',
+        },
+        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: [],
-};
+    plugins: [],
+};
\ No newline at end of file

--
Gitblit v1.9.3