Finished
This commit is contained in:
12
stylegen/base.css
vendored
Normal file
12
stylegen/base.css
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
html,
|
||||
container,
|
||||
body {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
overflow-y: auto;
|
||||
position: fixed;
|
||||
}
|
BIN
stylegen/bun.lockb
Executable file
BIN
stylegen/bun.lockb
Executable file
Binary file not shown.
11
stylegen/package.json
Normal file
11
stylegen/package.json
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"scripts": {
|
||||
"gen": "tailwindcss build ./base.css -o ../public/css/styles.css --minify",
|
||||
"watch": "tailwindcss build ./base.css -o ../public/css/styles.css --watch --minify"
|
||||
},
|
||||
"dependencies": {
|
||||
"@tailwindcss/typography": "^0.5.10",
|
||||
"daisyui": "^4.4.24",
|
||||
"tailwindcss": "^3.4.0"
|
||||
}
|
||||
}
|
12
stylegen/tailwind.config.js
vendored
Normal file
12
stylegen/tailwind.config.js
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: ["../pages/**/*.{html,go}"],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
daisyui: {
|
||||
themes: ["night"],
|
||||
},
|
||||
plugins: [require("daisyui"), require('@tailwindcss/typography')],
|
||||
}
|
||||
|
Reference in New Issue
Block a user