feat(12): tailwindcss init
This commit is contained in:
parent
3e395b5034
commit
b8c5a0f19b
|
@ -0,0 +1,3 @@
|
|||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
|
@ -5,7 +5,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="./public/images/favicon-32x32.png">
|
||||
|
||||
<link href="/dist/output.css" rel="stylesheet">
|
||||
|
||||
<title>Frontend Mentor | Order summary card</title>
|
||||
|
||||
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
|
||||
|
@ -14,7 +15,8 @@
|
|||
.attribution a { color: hsl(228, 45%, 44%); }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<body
|
||||
class="bg-blue-200" >
|
||||
|
||||
Order Summary
|
||||
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: ["./src/**/*.html"],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
|
Loading…
Reference in New Issue