Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
18acc64
Add css snippets json and tab
CharlieS1103 Dec 9, 2021
18dc34b
Add fetch css snippets function
CharlieS1103 Dec 9, 2021
4d5caaf
Update snippets and fix settings format
CharlieS1103 Dec 17, 2021
d293e92
Get the snippets to display
CharlieS1103 Dec 17, 2021
30ea90f
♻️ Make card name slightly more readable
theRealPadster Dec 18, 2021
bf46c70
Add CSS snippet, fix JSON formatting
theRealPadster Dec 18, 2021
e578ddc
Add install and uninstall functionality
CharlieS1103 Dec 18, 2021
5d195b5
Simplify reload modal
CharlieS1103 Dec 19, 2021
99f3d75
Fix snippet names not displaying
CharlieS1103 Dec 19, 2021
0530559
Fix snippets displaying on other tabs
CharlieS1103 Dec 19, 2021
7521269
Misc tweaks and consolidation/cleanup
theRealPadster Dec 19, 2021
7dacf7e
Merge branch 'main' into css-snippets
theRealPadster Dec 19, 2021
778f379
🐛 Fix error
theRealPadster Dec 19, 2021
acff481
Update deps
theRealPadster Dec 19, 2021
f35a24e
Use node 14 again so vs code doesn't complain about linting
theRealPadster Dec 19, 2021
e3519de
🐛 Fix more missing props, Fix snippet localstorageKey only replacing …
theRealPadster Dec 19, 2021
ec5c8f6
🐛 Fix auto-hide friends snippet
theRealPadster Dec 19, 2021
d9f57f1
✨ Implement snippet functionality
theRealPadster Dec 19, 2021
2a8c792
✨ Don't require reload to add/remove CSS snippets,
theRealPadster Dec 19, 2021
42973ff
🐛 Fix snippets not initializing on load
theRealPadster Dec 19, 2021
9216c6f
💄 Don't show preview for snippet cards
theRealPadster Dec 19, 2021
7cdaf7d
Shorten name of Auto-hide Friends snippet
theRealPadster Dec 19, 2021
f547132
Update readme
CharlieS1103 Dec 19, 2021
d9c73bd
Merge branch 'css-snippets' of https://github.com/CharlieS1103/spicet…
CharlieS1103 Dec 19, 2021
1b671a7
Change install button formatting
CharlieS1103 Dec 19, 2021
84b15da
🐛 Fix whoopsie
theRealPadster Dec 19, 2021
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
Prev Previous commit
Next Next commit
Update readme
  • Loading branch information
CharlieS1103 committed Dec 19, 2021
commit f54713252b47121a29366d2100e9eb86e9ebd514
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,16 @@ For themes:
```
_Please note that if all your extensions are in the root folder, you don't need to include a filepath._

## Snippets
Snippets are rather basic to implement, please use this website to make the css snippet single line: [Multiline => Singleline](https://tools.knowledgewalls.com/online-multiline-to-single-line-converter)
Once you have your code segment ready, edit snippets.json and add the following:
```json
{
"title": "Title",
"description": "description",
"code": "The single line css you have"
}
```
## Styling + Build Process
- The stylesheet is built using Sass (scss) with the [Parcel](https://parceljs.org/) bundler
- The main stylesheet is style/style.scss, which builds all the components, and compiles into style.css
Expand Down