Skip to content
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

demo/home page greenwood Super CSS (SCSS) optimizations #74

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
c42703a
recent post component
thescientist13 Jun 3, 2024
37d1752
hero banner iterations
thescientist13 Jun 6, 2024
94e1f7f
formatting
thescientist13 Jun 6, 2024
12d69e6
WIP walkthrough section setup
thescientist13 Jun 10, 2024
08d805c
css modules implementation refactoring
thescientist13 Jun 10, 2024
e78d4e0
misc walkthrough SSR refactor
thescientist13 Jun 10, 2024
84a7a32
walkthrough layout styling WIP
thescientist13 Jun 11, 2024
6bf8881
fix lint
thescientist13 Jun 17, 2024
b7f9120
misc styling
thescientist13 Jun 17, 2024
d59eac0
hover styling for walk through
thescientist13 Jun 17, 2024
2a4cd25
scaffolding out addition home page sections
thescientist13 Jun 17, 2024
30a7cbf
favor init package greenwood starter command
thescientist13 Jun 24, 2024
8d92402
card emphasis styling
thescientist13 Jun 24, 2024
cf8892f
active selection
thescientist13 Jun 24, 2024
dad6ca1
run anywhere platform icon boxes
thescientist13 Jun 25, 2024
f6d2467
formatting
thescientist13 Jun 25, 2024
6d4290c
styling and content for build with friends section
thescientist13 Jun 30, 2024
1c2a582
restore fill on github icon SVG
thescientist13 Jun 30, 2024
d6e0282
misc copy and styling tweaks
thescientist13 Jun 30, 2024
53a5fb8
why greenwood skeleton
thescientist13 Jul 1, 2024
bfe970b
misc sections styling
thescientist13 Jul 1, 2024
15c57dd
getting started CTA content
thescientist13 Jul 1, 2024
c5756b5
breakpoint responsiveness
thescientist13 Jul 1, 2024
79b50ff
adjust text
thescientist13 Jul 3, 2024
307cfc4
walkthrough code box nav styling
thescientist13 Jul 3, 2024
8bb8302
misc responsiveness
thescientist13 Jul 6, 2024
7ea44f7
general mobile and responsivess styling refinements
thescientist13 Jul 8, 2024
feb20bc
re-patch post rebase
thescientist13 Jul 11, 2024
da699b8
greenwood support for postcss-import / @import for all lifecycles
thescientist13 Jul 12, 2024
31a73ab
css modules with import attributes example
thescientist13 Jul 12, 2024
46ae978
refactor CSS servering on optimization
thescientist13 Jul 13, 2024
27faa8a
patch support for real CSS Modules woo hoo
thescientist13 Jul 13, 2024
6f4b95b
formatting
thescientist13 Jul 13, 2024
46fc756
patch support for multiple importRefs
thescientist13 Jul 14, 2024
61aaae8
real JSON modules
thescientist13 Jul 14, 2024
0e73a76
refactor attribute asset chunk pathnames
thescientist13 Jul 14, 2024
329a2d8
patching with greenwood super css
thescientist13 Jul 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion greenwood.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { greenwoodPluginImportRaw } from "@greenwood/plugin-import-raw";
import { greenwoodPluginCssModules } from "./plugin-css-modules.js";
// import { greenwoodPluginPostCss } from "@greenwood/plugin-postcss";

export default {
prerender: true,
plugins: [greenwoodPluginImportRaw(), greenwoodPluginCssModules()],
plugins: [greenwoodPluginCssModules(), greenwoodPluginImportRaw()],
markdown: {
plugins: ["@mapbox/rehype-prism"],
},
Expand Down
Loading
Loading