diff options
author | Vendicated <vendicated@riseup.net> | 2023-04-30 21:47:33 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2023-04-30 21:47:33 +0200 |
commit | c6196dff81397c259e92cf2aeb26c96a88bbee8a (patch) | |
tree | 7a804a6451d30e24805515567a7efeefaa958a6c /src/plugins | |
parent | acdb390302b6b17c9106097de62b6752864573d5 (diff) | |
download | Vencord-c6196dff81397c259e92cf2aeb26c96a88bbee8a.tar.gz Vencord-c6196dff81397c259e92cf2aeb26c96a88bbee8a.tar.bz2 Vencord-c6196dff81397c259e92cf2aeb26c96a88bbee8a.zip |
[skip ci] PlatformIndicator: Fix 1px misalignment
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/platformIndicators.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/platformIndicators.tsx b/src/plugins/platformIndicators.tsx index eec0447..d6b42a6 100644 --- a/src/plugins/platformIndicators.tsx +++ b/src/plugins/platformIndicators.tsx @@ -43,7 +43,7 @@ function Icon(path: string, viewBox = "0 0 24 24") { marginLeft: wantMargin ? 4 : 0, verticalAlign: "top", position: "relative", - top: 1, + top: wantMargin ? 1 : 0, }} > <path d={path} /> |