Tailwind CSS eingebunden

This commit is contained in:
Jason Streifling 2024-01-07 10:06:47 +01:00
parent 59e1016123
commit 408fb2bbc2
4 changed files with 17 additions and 0 deletions

4
.gitignore vendored
View File

@ -2,3 +2,7 @@ tmp
test.sql
static/test.jpg
static/test.mp4
node_modules
static/css/output.css
package.json
package-lock.json

3
static/css/input.css Normal file
View File

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

9
tailwind.config.js Normal file
View File

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

View File

@ -16,6 +16,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/static/css/style.css">
<link rel="stylesheet" href="/static/css/output.css">
<title>Sicherheitsunterweisung</title>
</head>