-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
generate css again #281
base: hakyll
Are you sure you want to change the base?
generate css again #281
Changes from all commits
95916b2
90df642
4d55454
f092885
fafe7a1
22375f8
6c2c5b1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,9 @@ _site/ | |
stack.yaml.lock | ||
dist-newstyle/ | ||
|
||
### NodeJS ### | ||
node_modules/ | ||
|
||
### General ### | ||
*~ | ||
.DS_Store |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,20 @@ | ||||||||||
/** | ||||||||||
* WARNING: This file will be overwritten when the site is built. | ||||||||||
* Do not put anything in here that is unrelated to tailwind. | ||||||||||
* | ||||||||||
* NOTE: The underlying implementation details of how this works are as follows | ||||||||||
* 1. tailwindcss needs these directives in order to know where to generate the | ||||||||||
* output | ||||||||||
* 2. first, hackyll is run and will copy this file to | ||||||||||
* _sites/assets/tailwind.css | ||||||||||
* 3. then, after hackyll is done, postcss will be ran on _this_ | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
* assets/tailwind.css file. Postcss will, during execution, invoke | ||||||||||
* tailwindcss. tailwindcss (the compiler) will scan all the files in the | ||||||||||
* site for tailwind classes (including _this_ assets/tailwind.css file). | ||||||||||
* 4. postcss's output file is configured to be _site/assets/tailwind.css | ||||||||||
* (which causes this file to get overwritten with the correct contents) | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not this file, right? It sounds like it should overwrite the one in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You are correct. I'll fix that :) |
||||||||||
*/ | ||||||||||
|
||||||||||
@tailwind base; | ||||||||||
@tailwind components; | ||||||||||
@tailwind utilities; |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.