From 84c97ae5ff0efc9dc1099d3bd6cdae0db606e758 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Thu, 8 Feb 2024 19:56:13 -0500 Subject: [PATCH] fix: Missing padding on public share custom url --- app/components/Sharing/PublicAccess.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/Sharing/PublicAccess.tsx b/app/components/Sharing/PublicAccess.tsx index c546a7c3d..a65d6e4b2 100644 --- a/app/components/Sharing/PublicAccess.tsx +++ b/app/components/Sharing/PublicAccess.tsx @@ -221,7 +221,7 @@ const ShareLinkInput = styled(Input)` min-width: 100px; flex: 1; - ${NativeInput} { + ${NativeInput}:not(:first-child) { padding: 4px 8px 4px 0; flex: 1; }