Skip to content

Commit

Permalink
restore css
Browse files Browse the repository at this point in the history
  • Loading branch information
eanders-ms committed Feb 12, 2024
1 parent 60790f4 commit f9b8688
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion teachertool/src/components/Toasts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const ToastNotification: React.FC<IToastNotificationProps> = ({ toast }) => {
</div>
)}
<div className={css["text-container"]}>
{toast.text && <div className={css["text"]}>{toast.text}</div>}
{toast.text && <div className={classList(css["text"], "tt-toast-text")}>{toast.text}</div>}
{toast.detail && <div className={css["detail"]}>{toast.detail}</div>}
{toast.jsx && <div>{toast.jsx}</div>}
</div>
Expand Down

0 comments on commit f9b8688

Please sign in to comment.