diff --git a/src/frontend/src/App.tsx b/src/frontend/src/App.tsx
index e2ed136df..0af87df78 100644
--- a/src/frontend/src/App.tsx
+++ b/src/frontend/src/App.tsx
@@ -102,35 +102,44 @@ export default function App() {
)}
-
- {tempNotificationList.map((alert) => (
-
- {alert.type === "error" ? (
-
- ) : alert.type === "notice" ? (
-
- ) : (
-
- )}
-
- ))}
+
+
+ {tempNotificationList.map((alert) => (
+
+ {alert.type === "error" && (
+
+ )}
+
+ ))}
+
+
+ {tempNotificationList.map((alert) => (
+
+ {alert.type === "notice" ? (
+
+ ) : alert.type === "success" && (
+
+ )}
+
+ ))}
+
);
diff --git a/src/frontend/src/style/applies.css b/src/frontend/src/style/applies.css
index 4bb0dd1c4..c4708128b 100644
--- a/src/frontend/src/style/applies.css
+++ b/src/frontend/src/style/applies.css
@@ -584,7 +584,7 @@
}
.app-div {
- @apply fixed bottom-5 left-5 flex flex-col-reverse;
+ @apply absolute bottom-5 left-5 flex flex-col-reverse;
}
.chat-input-modal-txtarea {