Making UI changes

This commit is contained in:
Ryan Chen
2025-12-24 17:12:56 -08:00
parent 70799ffb7d
commit f5e2d68cd2
17 changed files with 3262 additions and 1747 deletions

View File

@@ -4,7 +4,7 @@ type QuestionBubbleProps = {
export const QuestionBubble = ({ text }: QuestionBubbleProps) => {
return (
<div className="rounded-md bg-stone-200 p-3 sm:p-4 break-words overflow-wrap-anywhere text-sm sm:text-base">
<div className="w-2/3 rounded-md bg-stone-200 p-3 sm:p-4 break-words overflow-wrap-anywhere text-sm sm:text-base ml-auto">
🤦: {text}
</div>
);