-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# What 💻 * Adjusted the particles configuration * cleaned up some things missed when testing nuxt content * adjusted prettier ignore # Why ✋ * cleaner templates and particles configuration is now in a separate file * components made for Nuxt Content need to be placed in `/components/content/` folder. This accidentally got covered by the prettier ignore file. The purpose of the prettier ignore for markdown content is so that we don't have prettier formatting non-standard markdown content (like vue component syntax) and breaking them. This is why markdown is ignored for now on prettier auto formatting.
- Loading branch information
1 parent
df27edd
commit d3206fc
Showing
6 changed files
with
105 additions
and
182 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ node_modules | |
.github | ||
.idea | ||
public | ||
content | ||
**/*.md |
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
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,74 +1,67 @@ | ||
{ | ||
"background":{ | ||
"color":{ | ||
"value":"#0d47a1" | ||
} | ||
"fpsLimit": 120, | ||
"interactivity": { | ||
"events": { | ||
"onClick": { | ||
"enable": true, | ||
"mode": "push" | ||
}, | ||
"onHover": { | ||
"enable": true, | ||
"mode": "repulse" | ||
} | ||
}, | ||
"modes": { | ||
"bubble": { | ||
"distance": 400, | ||
"duration": 2, | ||
"opacity": 0.8, | ||
"size": 40 | ||
}, | ||
"push": { | ||
"quantity": 4 | ||
}, | ||
"repulse": { | ||
"distance": 50, | ||
"duration": 0.4 | ||
} | ||
} | ||
}, | ||
"fpsLimit":120, | ||
"interactivity":{ | ||
"events":{ | ||
"onClick":{ | ||
"enable":true, | ||
"mode":"push" | ||
}, | ||
"onHover":{ | ||
"enable":true, | ||
"mode":"repulse" | ||
} | ||
}, | ||
"modes":{ | ||
"bubble":{ | ||
"distance":400, | ||
"duration":2, | ||
"opacity":0.8, | ||
"size":40 | ||
}, | ||
"push":{ | ||
"quantity":4 | ||
}, | ||
"repulse":{ | ||
"distance":200, | ||
"duration":0.4 | ||
} | ||
} | ||
"particles": { | ||
"color": { | ||
"value": "#8b8ccf" | ||
}, | ||
"links": { | ||
"color": "#8b8ccf", | ||
"distance": 150, | ||
"enable": true, | ||
"opacity": 0.5, | ||
"width": 1 | ||
}, | ||
"move": { | ||
"direction": "none", | ||
"enable": true, | ||
"outModes": "bounce", | ||
"random": false, | ||
"speed": 0.5, | ||
"straight": false | ||
}, | ||
"number": { | ||
"density": { | ||
"enable": true | ||
}, | ||
"value": 80 | ||
}, | ||
"opacity": { | ||
"value": 0.5 | ||
}, | ||
"shape": { | ||
"type": "circle" | ||
}, | ||
"size": { | ||
"value": { "min": 1, "max": 5 } | ||
} | ||
}, | ||
"particles":{ | ||
"color":{ | ||
"value":"#ffffff" | ||
}, | ||
"links":{ | ||
"color":"#ffffff", | ||
"distance":150, | ||
"enable":true, | ||
"opacity":0.5, | ||
"width":1 | ||
}, | ||
"move":{ | ||
"direction":"none", | ||
"enable":true, | ||
"outModes":"bounce", | ||
"random":false, | ||
"speed":6, | ||
"straight":false | ||
}, | ||
"number":{ | ||
"density":{ | ||
"enable":true | ||
}, | ||
"value":80 | ||
}, | ||
"opacity":{ | ||
"value":0.5 | ||
}, | ||
"shape":{ | ||
"type":"circle" | ||
}, | ||
"size":{ | ||
"value":{ | ||
"min":1, | ||
"max":5 | ||
} | ||
} | ||
}, | ||
"detectRetina":true | ||
"detectRetina": true | ||
} | ||
|