Skip to content
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b49b1b5
feat: add snippets to Hide `Open miniPlayer`, `Full screen` buttons.
Jun 2, 2024
802c826
feat: update snippets preview of `Hide Open miniPlayer`, ` Hide Full …
Jun 2, 2024
54db6a1
Merge branch 'spicetify:main' into main
Ender-Wang Jun 7, 2024
12790ee
chore: lint with biome
Ender-Wang Jun 7, 2024
cdeef39
Merge branch 'main' of https://github.com/Ender-Wang/marketplace
Ender-Wang Jun 7, 2024
3df585e
Merge branch 'spicetify:main' into main
Ender-Wang Jun 7, 2024
411d11c
fix(snippets): fix left margin of `Hover Panels`
Ender-Wang Jun 7, 2024
57b9cf5
feat(snippets): add a `New Hover Panel`
Ender-Wang Jun 8, 2024
8b6bcc8
Merge branch 'main' into main
Ender-Wang Jun 16, 2024
30a2d8c
Merge branch 'main' into main
rxri Jun 17, 2024
dd9ca7e
Merge branch 'spicetify:main' into main
Ender-Wang Jun 23, 2024
a42989f
feat(snippets): add a `Dynamic Left Sidebar`
Ender-Wang Jun 23, 2024
e9c0df8
fix(snippets): fix padding on the left
Ender-Wang Jun 23, 2024
d57a930
fix(snippets): refine padding animation
Ender-Wang Jun 23, 2024
c724913
Update Dynamic-Left-Sidebar.gif
Ender-Wang Jun 23, 2024
294ac58
feat(snippets): disable draggle opt
Ender-Wang Jul 4, 2024
d11e938
fix(snippets): fix custom app icon&text glitch during animation
Ender-Wang Jul 4, 2024
0d7182f
Update Dynamic-Left-Sidebar.gif
Ender-Wang Jul 4, 2024
55676f9
fix(snippets): update description
Ender-Wang Jul 5, 2024
1a2d3c9
Merge branch 'main' into main
theRealPadster Jul 5, 2024
43c1e9e
Merge remote-tracking branch 'upstream/main'
Ender-Wang Jul 5, 2024
41ac29c
Merge branch 'spicetify:main' into main
Ender-Wang Jul 5, 2024
8dfe2d9
Merge remote-tracking branch 'upstream/main'
Ender-Wang Jul 13, 2024
1d7e480
fix(snippets): fix text overlapping issue
Ender-Wang Jul 13, 2024
f14fc5b
feat(snippets): remove duplicates
Ender-Wang Jul 13, 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
2 changes: 1 addition & 1 deletion resources/snippets.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
{
"title": "Dynamic Left Sidebar",
"description": "Make the left sidebar dynamic, so it only shows when you hover over it and pushes the main content to the right.",
"code": "#Desktop_LeftSidebar_Id {\n width: 0px;\n transition: width 0.5s ease, padding-left 0.5s ease;\n z-index: 12;\n}\n#Desktop_LeftSidebar_Id:hover {\n padding-left: 8px;\n width: 280px;\n}\n:root {\n margin-left: -8px;\n}\nsvg[data-encore-id='icon']{\n overflow: visible;\n}\nspan{\n white-space: nowrap;\n}",
"code": "#Desktop_LeftSidebar_Id {\n width: 0px;\n transition: width 0.5s ease, padding-left 0.5s ease;\n z-index: 12;\n}\n#Desktop_LeftSidebar_Id:hover {\n padding-left: 8px;\n width: 280px;\n}\n:root {\n margin-left: -8px;\n}\nsvg[data-encore-id='icon']{\n overflow: visible;\n}\n#Desktop_LeftSidebar_Id span {\n white-space: nowrap;\n}",
"preview": "resources/assets/snippets/Dynamic-Left-Sidebar.gif"
},
{
Expand Down