chore: add tailwind

This commit is contained in:
EsioFreitas 2022-10-26 14:43:26 -03:00
parent 12f599d31e
commit 20ba886496
2 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,7 @@
@import './base.css';
@tailwind base;
@tailwind components;
@tailwind utilities;
#app {
max-width: 1280px;

View File

@ -1,6 +1,6 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}", "./src/**/*.vue"],
theme: {
extend: {},
},