diff options
author | TheKodeToad <TheKodeToad@proton.me> | 2023-03-25 01:30:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-25 01:30:24 +0000 |
commit | b90392576e81fe2d0e665039ec832d47dc6a731c (patch) | |
tree | b0386e13c0af7191fbf6fdeb8c3648bbf0f1d2bc /src/plugins/pronoundb/styles.css | |
parent | e143260891e25bc133ab5e2f94b5831bdf63f3dc (diff) | |
download | Vencord-b90392576e81fe2d0e665039ec832d47dc6a731c.tar.gz Vencord-b90392576e81fe2d0e665039ec832d47dc6a731c.tar.bz2 Vencord-b90392576e81fe2d0e665039ec832d47dc6a731c.zip |
PronounDB: Add support for compact mode & clean up (#604)
Diffstat (limited to 'src/plugins/pronoundb/styles.css')
-rw-r--r-- | src/plugins/pronoundb/styles.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/plugins/pronoundb/styles.css b/src/plugins/pronoundb/styles.css new file mode 100644 index 0000000..a7d9eb9 --- /dev/null +++ b/src/plugins/pronoundb/styles.css @@ -0,0 +1,9 @@ +.vc-pronoundb-compact { + display: none; +} + +[class*="compact"] .vc-pronoundb-compact { + display: inline-block; + margin-left: -2px; + margin-right: 0.25rem; +} |