-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: Use tailwind classes * fix: prose max length mobile * feat: Use daisy
- Loading branch information
1 parent
cfd4180
commit 3e5c8ea
Showing
12 changed files
with
181 additions
and
385 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[build-system] | ||
requires = ["poetry>=0.12"] | ||
build-backend = "poetry.masonry.api" | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry] | ||
name = "wagtail-code-blog" | ||
version = "0.4.3" | ||
version = "0.5.0" | ||
license = "MIT" | ||
description = "A wagtail code blog" | ||
authors = ["Dani Hodovic <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,22 @@ | ||
module.exports = { | ||
content: [ | ||
'./wagtail_code_blog/templates/**/*.html', | ||
], | ||
content: ["./wagtail_code_blog/templates/**/*.html"], | ||
safelist: [], | ||
theme: { | ||
extend: {}, | ||
}, | ||
plugins: [ | ||
/** | ||
* '@tailwindcss/forms' is the forms plugin that provides a minimal styling | ||
* for forms. If you don't like it or have own styling for forms, | ||
* comment the line below to disable '@tailwindcss/forms'. | ||
*/ | ||
require('@tailwindcss/forms'), | ||
require('@tailwindcss/typography'), | ||
require('@tailwindcss/line-clamp'), | ||
require('@tailwindcss/aspect-ratio'), | ||
/** | ||
* '@tailwindcss/forms' is the forms plugin that provides a minimal styling | ||
* for forms. If you don't like it or have own styling for forms, | ||
* comment the line below to disable '@tailwindcss/forms'. | ||
*/ | ||
require("@tailwindcss/forms"), | ||
require("@tailwindcss/typography"), | ||
require("@tailwindcss/line-clamp"), | ||
require("@tailwindcss/aspect-ratio"), | ||
require("daisyui"), | ||
], | ||
} | ||
daisyui: { | ||
darkTheme: false, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.