feat(12): tailwindcss init

This commit is contained in:
efim 2023-06-28 08:43:28 +00:00
parent 3e395b5034
commit b8c5a0f19b
3 changed files with 16 additions and 2 deletions

View File

@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

View File

@ -5,7 +5,8 @@
<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>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 --> <!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
@ -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

View File

@ -0,0 +1,9 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.html"],
theme: {
extend: {},
},
plugins: [],
}