diff options
author | V <vendicated@riseup.net> | 2023-05-10 23:14:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-10 23:14:04 +0200 |
commit | cb385d1b280551eb16f1f9836a93cc9bcc43da15 (patch) | |
tree | 87897b84fe78d4d10686981c8bd1c31a5326b46d /src/plugins/translate/styles.css | |
parent | 195f1a032fc63d4fd35564a9d11f8ed4afbcac4d (diff) | |
download | Vencord-cb385d1b280551eb16f1f9836a93cc9bcc43da15.tar.gz Vencord-cb385d1b280551eb16f1f9836a93cc9bcc43da15.tar.bz2 Vencord-cb385d1b280551eb16f1f9836a93cc9bcc43da15.zip |
New Plugin: Translate (#1089)
Co-authored-by: Nuckyz <61953774+Nuckyz@users.noreply.github.com>
Diffstat (limited to 'src/plugins/translate/styles.css')
-rw-r--r-- | src/plugins/translate/styles.css | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/plugins/translate/styles.css b/src/plugins/translate/styles.css new file mode 100644 index 0000000..b6d2223 --- /dev/null +++ b/src/plugins/translate/styles.css @@ -0,0 +1,37 @@ +.vc-trans-modal-content { + padding: 1em; +} + +.vc-trans-modal-header { + justify-content: space-between; + align-content: center; +} + +.vc-trans-modal-header h1 { + margin: 0; +} + +.vc-trans-accessory { + color: var(--text-muted); + margin-top: 0.5em; + font-style: italic; + font-weight: 400; +} + +.vc-trans-accessory svg { + margin-right: 0.25em; +} + +.vc-trans-dismiss { + all: unset; + cursor: pointer; + color: var(--text-link); +} + +.vc-trans-dismiss:is(:hover, :focus) { + text-decoration: underline; +} + +.vc-trans-auto-translate { + color: var(--green-360); +} |