From e00c30bd1ff3771e8c06592ca30fad74d7bf2e42 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Sat, 10 Jun 2023 22:11:30 +0300 Subject: [PATCH] fix: Empty state text align --- 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 be16ca4ce..3d6c2dafb 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 : "left")}; + text-align: ${(props) => (props.dir ? props.dir : "auto")}; color: ${(props) => props.type === "secondary" ? props.theme.textSecondary