Tailwind CSS eingebunden
This commit is contained in:
parent
59e1016123
commit
408fb2bbc2
4
.gitignore
vendored
4
.gitignore
vendored
@ -2,3 +2,7 @@ tmp
|
|||||||
test.sql
|
test.sql
|
||||||
static/test.jpg
|
static/test.jpg
|
||||||
static/test.mp4
|
static/test.mp4
|
||||||
|
node_modules
|
||||||
|
static/css/output.css
|
||||||
|
package.json
|
||||||
|
package-lock.json
|
||||||
|
3
static/css/input.css
Normal file
3
static/css/input.css
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
@tailwind base;
|
||||||
|
@tailwind components;
|
||||||
|
@tailwind utilities;
|
9
tailwind.config.js
Normal file
9
tailwind.config.js
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
/** @type {import('tailwindcss').Config} */
|
||||||
|
module.exports = {
|
||||||
|
content: ["./templates/*.html"],
|
||||||
|
theme: {
|
||||||
|
extend: {},
|
||||||
|
},
|
||||||
|
plugins: [],
|
||||||
|
}
|
||||||
|
|
@ -16,6 +16,7 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<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/style.css">
|
||||||
|
<link rel="stylesheet" href="/static/css/output.css">
|
||||||
<title>Sicherheitsunterweisung</title>
|
<title>Sicherheitsunterweisung</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user