diff --git a/components/Global/card.tsx b/components/Global/card.tsx index 98369d21..f83f3549 100644 --- a/components/Global/card.tsx +++ b/components/Global/card.tsx @@ -83,13 +83,17 @@ export function Card(props: CardProps) { width={dimensions.width} >
{ props.caption }
{ props.subCaption && ( - + { props.subCaption } )} diff --git a/components/Global/text.tsx b/components/Global/text.tsx index d2afa757..5ac1efe8 100644 --- a/components/Global/text.tsx +++ b/components/Global/text.tsx @@ -28,6 +28,7 @@ interface TextProps { bold?: boolean | undefined children: string; width?: number; + textAlign?: "left" | "right" | "unset" | "auto" | "center" | "justify" | undefined; } export function Text(props: TextProps): React.JSX.Element { @@ -35,6 +36,7 @@ export function Text(props: TextProps): React.JSX.Element {