tailwind.config.js 205 B

123456789101112
  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. },
  10. },
  11. plugins: [],
  12. };