2022-06-17 17:48:25 +08:00
|
|
|
import { defineConfig, presetAttributify, presetIcons, presetUno } from 'unocss'
|
2022-06-11 16:55:36 +08:00
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
shortcuts: [
|
|
|
|
[
|
|
|
|
'btn',
|
|
|
|
'px-4 py-1 rounded inline-block bg-teal-600 text-white cursor-pointer hover:bg-teal-700 disabled:cursor-default disabled:bg-gray-600 disabled:opacity-50',
|
|
|
|
],
|
|
|
|
],
|
2022-06-17 17:48:25 +08:00
|
|
|
presets: [presetUno(), presetAttributify()],
|
2022-06-11 16:55:36 +08:00
|
|
|
})
|