From 8f30825eddcb4961f950be4b83a05e0264d0c696 Mon Sep 17 00:00:00 2001 From: Shiba <44804845+DeepDoge@users.noreply.github.com> Date: Sun, 19 Dec 2021 11:59:36 +0000 Subject: [PATCH] Updated Watch On LBRY button style --- src/scripts/ytContent.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/scripts/ytContent.tsx b/src/scripts/ytContent.tsx index 6e18bb9..9e2d290 100644 --- a/src/scripts/ytContent.tsx +++ b/src/scripts/ytContent.tsx @@ -62,7 +62,7 @@ export function WatchOnLbryButton({ targetPlatform = 'app', lbryPathname, time } border: '0', color: 'whitesmoke', padding: '10px 16px', - marginRight: '5px', + marginRight: '4px', fontSize: '14px', textDecoration: 'none', ...buttonSetting.style?.button, @@ -86,7 +86,6 @@ async function findButtonMountPoint(): Promise { const div = document.createElement('div'); div.style.display = 'flex'; div.style.alignItems = 'center' - div.style.justifyContent = 'center' mountBefore.parentElement?.insertBefore(div, mountBefore) mountPoint = div }