feat(12): tailwindcss init
This commit is contained in:
parent
3e395b5034
commit
b8c5a0f19b
|
@ -0,0 +1,3 @@
|
||||||
|
@tailwind base;
|
||||||
|
@tailwind components;
|
||||||
|
@tailwind utilities;
|
|
@ -5,6 +5,7 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
|
<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="./public/images/favicon-32x32.png">
|
<link rel="icon" type="image/png" sizes="32x32" href="./public/images/favicon-32x32.png">
|
||||||
|
<link href="/dist/output.css" rel="stylesheet">
|
||||||
|
|
||||||
<title>Frontend Mentor | Order summary card</title>
|
<title>Frontend Mentor | Order summary card</title>
|
||||||
|
|
||||||
|
@ -14,7 +15,8 @@
|
||||||
.attribution a { color: hsl(228, 45%, 44%); }
|
.attribution a { color: hsl(228, 45%, 44%); }
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body
|
||||||
|
class="bg-blue-200" >
|
||||||
|
|
||||||
Order Summary
|
Order Summary
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
/** @type {import('tailwindcss').Config} */
|
||||||
|
module.exports = {
|
||||||
|
content: ["./src/**/*.html"],
|
||||||
|
theme: {
|
||||||
|
extend: {},
|
||||||
|
},
|
||||||
|
plugins: [],
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue