tailwind.config.js 394 B

1234567891011121314151617181920212223
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: ['./index.html', './src/**/*.{vue,js}'],
  4. theme: {
  5. extend: {
  6. height: {
  7. 'screen/2': '50vh',
  8. },
  9. spacing: {
  10. '5.5': '20px', // 添加自定义间距值
  11. },
  12. },
  13. },
  14. plugins: [
  15. function({ addUtilities }) {
  16. addUtilities({
  17. '.border-none': {
  18. border: 'none !important',
  19. }
  20. })
  21. }
  22. ],
  23. };