From 4a4ea0e5310fd6a0014eccced6fcc0efeeee2cd2 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Fri, 11 Aug 2023 22:30:48 +0200 Subject: [PATCH] fix: Text alignment on collection empty state --- app/components/Text.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/Text.ts b/app/components/Text.ts index bd69efccc..f9759745d 100644 --- a/app/components/Text.ts +++ b/app/components/Text.ts @@ -14,7 +14,7 @@ type Props = { */ const Text = styled.p` margin-top: 0; - text-align: ${(props) => (props.dir ? props.dir : "initial")}; + text-align: ${(props) => (props.dir ? props.dir : "inherit")}; color: ${(props) => props.type === "secondary" ? props.theme.textSecondary