windi.config.ts 622 B

123456789101112131415
  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. divider_y: 'w-0 h-full border border-solid border-gray-100 mx-2',
  7. icon: 'w-24px h-24px fill-blue-600 bg-light-100 rounded-2px cursor-pointer mx-4px box-border',
  8. icon_reserve:
  9. 'w-24px h-24px bg-blue-600 fill-light-100 rounded-2px cursor-pointer mx-4px p-2px box-border',
  10. flex_center: 'flex justify-center items-center',
  11. flex_start: 'flex justify-start items-center'
  12. },
  13. })