windi.config.js 578 B

1234567891011121314151617181920212223242526
  1. /*
  2. * @Description:
  3. * @Author: 欧阳承珺
  4. * @LastEditors: 欧阳承珺
  5. * @Date: 2022-10-19 17:25:48
  6. * @LastEditTime: 2022-11-03 13:41:21
  7. */
  8. import { defineConfig } from 'windicss/helpers'
  9. export default defineConfig({
  10. theme: {
  11. screens: {
  12. 'footer': '1550px',
  13. '2xl': '1550px',
  14. 'xl': '1280px',
  15. 'lg': '1120px',
  16. 'tiny': '960px',
  17. 'sm': '768px'
  18. },
  19. extend: {
  20. fontFamily: {
  21. primary: ["微软雅黑","Microsoft YaHei","PingFang-SC-Regular", "Helvetica Neue", 'Helvetica', 'Arial', 'sans-serif']
  22. }
  23. }
  24. }
  25. })