diff options
author | Vendicated <vendicated@riseup.net> | 2023-04-30 01:25:17 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2023-04-30 01:25:17 +0200 |
commit | 4c13521a303b08f5e4cf0521b1bc93f86e8b54f7 (patch) | |
tree | ec4f2d52585fc8923879d841676a5134b9bedd6b /src | |
parent | 043381963bf7c3899c3224c05c18ff8542773a3e (diff) | |
download | Vencord-4c13521a303b08f5e4cf0521b1bc93f86e8b54f7.tar.gz Vencord-4c13521a303b08f5e4cf0521b1bc93f86e8b54f7.tar.bz2 Vencord-4c13521a303b08f5e4cf0521b1bc93f86e8b54f7.zip |
PlatformIndicators: Fix layout reflows
Diffstat (limited to 'src')
-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 6ffc259..1da482e 100644 --- a/src/plugins/platformIndicators.tsx +++ b/src/plugins/platformIndicators.tsx @@ -112,7 +112,7 @@ const PlatformIndicator = ({ user, inline = false, marginLeft = "4px" }: { user: gap: "4px", display: inline ? "inline-flex" : "flex", alignItems: "center", - transform: inline ? "translateY(4px)" : undefined + translate: inline ? "0 3px 0" : undefined }} > {icons} |