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