feat: 首页适配移动端,新增工具:随机密码生成

This commit is contained in:
taoran
2023-12-04 17:57:20 +08:00
parent 24b80f04c2
commit 48bf2b2198
10 changed files with 262 additions and 21 deletions
+8
View File
@@ -1,4 +1,5 @@
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
export default {
content: [
"./index.html",
@@ -6,6 +7,13 @@ export default {
],
theme: {
extend: {},
screens: {
// 自定义响应式尺寸
'c-xs': {'max': '768px'},
'c-sm': {'min': '768px'},
'c-lg': {'min': '1200px'},
...defaultTheme.screens,
}
},
plugins: [],
}