diff options
author | Nuckyz <61953774+Nuckyz@users.noreply.github.com> | 2023-04-05 17:44:03 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-05 20:44:03 +0000 |
commit | 9d742094cbb41dd42ce5cddbaf89e4fc2836f3a9 (patch) | |
tree | 5932e34b7a79a41a54a41d8f05b116e8e8f9da1c /src/plugins/showHiddenChannels/style.css | |
parent | 38f3aac98d1098a70364366c056e0007f041d1cf (diff) | |
download | Vencord-9d742094cbb41dd42ce5cddbaf89e4fc2836f3a9.tar.gz Vencord-9d742094cbb41dd42ce5cddbaf89e4fc2836f3a9.tar.bz2 Vencord-9d742094cbb41dd42ce5cddbaf89e4fc2836f3a9.zip |
ShowHiddenChannels: Use Discord's new overlay vars (#795)
* Fix SHC css for new Discord vars
* I'm dumb
* improvements to work with themes
---------
Co-authored-by: V <vendicated@riseup.net>
Diffstat (limited to 'src/plugins/showHiddenChannels/style.css')
-rw-r--r-- | src/plugins/showHiddenChannels/style.css | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/plugins/showHiddenChannels/style.css b/src/plugins/showHiddenChannels/style.css index 01903ce..c90e8b7 100644 --- a/src/plugins/showHiddenChannels/style.css +++ b/src/plugins/showHiddenChannels/style.css @@ -1,5 +1,4 @@ .shc-lock-screen-outer-container { - background-color: var(--background-primary); overflow: hidden scroll; flex: 1 1 auto; height: 100%; @@ -41,14 +40,14 @@ .shc-lock-screen-topic-container { color: var(--text-normal); - background-color: var(--background-secondary); + background: var(--bg-overlay-3, var(--background-secondary)); border-radius: 5px; padding: 10px; max-width: 70vw; } .shc-lock-screen-tags-container { - background-color: var(--background-secondary); + background: var(--bg-overlay-3, var(--background-secondary)); border-radius: 5px; padding: 10px; max-width: 70vw; @@ -84,7 +83,7 @@ } .shc-lock-screen-default-emoji-container > [class^="emojiContainer"] { - background-color: var(--background-secondary); + background: var(--bg-overlay-3, var(--background-secondary)); border-radius: 8px; padding: 3px 4px; margin-left: 5px; @@ -94,7 +93,7 @@ display: flex; flex-direction: column; align-items: center; - background-color: var(--background-secondary); + background: var(--bg-overlay-3, var(--background-secondary)); border-radius: 5px; padding: 10px; max-width: 70vw; |