windi.config.js 500 B

12345678910111213
  1. import { defineConfig } from 'windicss/helpers'
  2. export default defineConfig({
  3. shortcuts: {
  4. card: 'rounded-xl bg-light-50 p-3 relative box-border',
  5. divider: 'w-full h-0 border border-solid border-gray-100 my-2',
  6. icon: 'w-24px h-24px fill-blue-600 bg-light-100 rounded-2px cursor-pointer mx-4px box-border',
  7. icon_reserve:
  8. 'w-24px h-24px bg-blue-600 fill-light-100 rounded-2px cursor-pointer mx-4px p-2px box-border',
  9. flex_center:'flex justify-center items-center'
  10. },
  11. })