This package contains:
@leedomjs/tailwindcss-miniprogram-presetis designed for miniprogram, and transformspxtorpx.@leedomjs/tailwindcss-color-presetcollects some UI Frameworks' theme colors for Tailwind CSS.
pnpm add -D tailwindcss @leedomjs/tailwindcss-presetNote
There is an object param that contains some fields mp, element, naive, vant.
mp defaults to false, setting mp be true will enable the preset,
otherwise will enable default config of tailwindcss and disable the preset meanwhile.
element, naive, vant, these params default to dependencies that your project uses.
If your project depends on element-ui, element-plus, naive-ui, vant-ui,the color will be enable automatically. Setting to false will disable the color, otherwise will enabled.
const leedom = require('@leedomjs/tailwindcss-preset')
/** @type {import('tailwindcss').Config} */
module.exports = {
presets: [
leedom({
mp: true,
element: true,
naive: true,
vant: true,
}),
],
content: [...],
theme: {
extend: {},
},
plugins: [],
...
}- Use
-dv-instead of/to generate percentage - Use
-instead of.
For example:
<!-- w-1/2 = w-1-dv-2 -->
<div class="w-1/2 w-1-dv-2">hello, world.</div>
<!-- w-1.5 = w-1-5 -->
<div class="w-1.5 w-1-5">hello, world.</div>