feat(13): setting up tailwindcss
This commit is contained in:
parent
df09abd9a4
commit
d181064165
|
@ -0,0 +1,3 @@
|
|||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
|
@ -4,7 +4,8 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
|
||||
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
|
||||
<link href="/dist/output.css" rel="stylesheet">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href=".public/images/favicon-32x32.png">
|
||||
|
||||
<title>Frontend Mentor | [Challenge Name Here]</title>
|
||||
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: ["./src/**/*.html"],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
|
Loading…
Reference in New Issue