mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-04 22:02:44 +08:00
chore(tailwind): update tailwind.config.js
This commit is contained in:
parent
b9f433a9e5
commit
5c71382eaf
@ -10,11 +10,11 @@ const demo = ref('Demo');
|
||||
<view class="mt-30px">
|
||||
iconify 组件
|
||||
</view>
|
||||
<view class="mt-30px center flex flex-row gap-10px">
|
||||
<view class="mt-30rpx center flex flex-row gap-10px">
|
||||
<Iconify icon="i-mdi-account-box" size="64" color="blue" />
|
||||
<Iconify icon="i-mdi-account-box" size="48" color="orange" />
|
||||
<Iconify icon="i-mdi-account-box text-green-400" size="32" />
|
||||
<Iconify icon="i-mdi-account-box" />
|
||||
<Iconify icon="i-mdi-account-box" size="32" class="text-green-400" />
|
||||
<Iconify icon="i-mdi-account-box" class="text-red-400" />
|
||||
<Iconify icon="i-svg-spinners-12-dots-scale-rotate" />
|
||||
</view>
|
||||
</view>
|
||||
|
@ -1,11 +1,25 @@
|
||||
import { getIconCollections, iconsPlugin } from '@egoist/tailwindcss-icons';
|
||||
import { isMp } from './build/platform';
|
||||
|
||||
const spacing = {
|
||||
0: '0px',
|
||||
};
|
||||
|
||||
let i = 0;
|
||||
|
||||
while (i <= 750) {
|
||||
spacing[`${i}px`] = `${i}px`;
|
||||
spacing[`${i}rpx`] = `${i}rpx`;
|
||||
i++;
|
||||
}
|
||||
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: ['./public/index.html', './src/**/*.{html,js,ts,jsx,tsx,vue}'],
|
||||
theme: {
|
||||
extend: {},
|
||||
extend: {
|
||||
spacing,
|
||||
},
|
||||
},
|
||||
corePlugins: {
|
||||
// 小程序去使用 h5 的 preflight 和响应式 container 没有意义
|
||||
|
Loading…
x
Reference in New Issue
Block a user