diff --git a/packages/lsd-react/src/components/Toast/Toast.styles.ts b/packages/lsd-react/src/components/Toast/Toast.styles.ts index 6c354d9..e600686 100644 --- a/packages/lsd-react/src/components/Toast/Toast.styles.ts +++ b/packages/lsd-react/src/components/Toast/Toast.styles.ts @@ -53,7 +53,6 @@ export const ToastStyles = css` .${toastClasses.title} { position: relative; - font-weight: bold; } .${toastClasses.information} { @@ -83,7 +82,7 @@ export const ToastStyles = css` .${toastClasses.errorIcon} { position: absolute; - top: 5px; + top: 3px; left: -26px; } @@ -144,5 +143,9 @@ export const ToastStyles = css` .${toastClasses.textContainer} { min-width: 144px; } + + .${toastClasses.errorIcon} { + top: 0px; + } } ` diff --git a/packages/lsd-react/src/components/Toast/Toast.tsx b/packages/lsd-react/src/components/Toast/Toast.tsx index a525908..6bb56b5 100644 --- a/packages/lsd-react/src/components/Toast/Toast.tsx +++ b/packages/lsd-react/src/components/Toast/Toast.tsx @@ -126,7 +126,11 @@ export const Toast: React.FC & { >
{!!title && ( - + & { )} {!!information && ( - + {information} )}