generated from MiniDiscordThemes/Template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3745366
commit a2d13fc
Showing
4 changed files
with
26 additions
and
3 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,6 +1,6 @@ | ||
{ | ||
"name": "demonstration-discord-theme", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "A Discord theme for demonstrating Discord themes.", | ||
"repository": "github:MiniDiscordThemes/Demonstration", | ||
"author": "Saltssaumure <[email protected]>", | ||
|
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,4 +1,27 @@ | ||
@use "../vars" as var; | ||
@use "../mixins" as mixin; | ||
|
||
// Hide Replugged elements if user sets --demo-clientmod to hidden | ||
|
||
@container demo-clientmod style(--demo-clientmod: hidden) { | ||
} | ||
|
||
// SpotifyModal | ||
// https://github.com/Socketlike/replugged-plugins/tree/main/plugins/SpotifyModal | ||
#spotify-modal-root { | ||
@include mixin.genOneColor(var(--demo-banner-hue)); | ||
// Cover art | ||
.cover-art { | ||
content: var.$gradient; | ||
} | ||
} | ||
|
||
// FoldersRedesigned | ||
// https://github.com/YofukashiNo/FoldersRedesigned | ||
.wrapper__832f2 { | ||
@include mixin.genColors; | ||
// Custom folder icon | ||
.foldersRedesigned-folderIcon { | ||
background: var.$gradient !important; | ||
} | ||
} |