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