2023-02-05 18:11:34 +08:00
|
|
|
import {
|
|
|
|
defineConfig,
|
|
|
|
presetAttributify,
|
|
|
|
presetIcons,
|
|
|
|
presetTypography,
|
|
|
|
presetUno,
|
|
|
|
transformerDirectives,
|
|
|
|
transformerVariantGroup,
|
|
|
|
} from 'unocss'
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
shortcuts: [
|
2023-06-20 23:44:17 +08:00
|
|
|
[
|
|
|
|
'btn',
|
|
|
|
'px-4 py-1 rounded inline-block bg-teal-700 text-white cursor-pointer hover:bg-teal-800 disabled:cursor-default disabled:bg-gray-600 disabled:opacity-50',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'icon-btn',
|
|
|
|
'inline-block cursor-pointer select-none opacity-75 transition duration-200 ease-in-out hover:opacity-100 hover:text-teal-600',
|
|
|
|
],
|
2023-02-05 18:11:34 +08:00
|
|
|
],
|
|
|
|
presets: [
|
|
|
|
presetUno(),
|
|
|
|
presetAttributify(),
|
|
|
|
presetIcons({
|
|
|
|
scale: 1.2,
|
|
|
|
warn: true,
|
|
|
|
}),
|
|
|
|
presetTypography(),
|
|
|
|
],
|
2023-06-20 23:44:17 +08:00
|
|
|
transformers: [transformerDirectives(), transformerVariantGroup()],
|
2023-02-05 18:11:34 +08:00
|
|
|
})
|