diff --git a/Client/src/Pages/Monitors/Details/index.jsx b/Client/src/Pages/Monitors/Details/index.jsx index b636444bd..4c0807ecb 100644 --- a/Client/src/Pages/Monitors/Details/index.jsx +++ b/Client/src/Pages/Monitors/Details/index.jsx @@ -171,8 +171,34 @@ const DetailsPage = () => { ]} /> - - {monitor?.status ? : } + + + + {monitor.url?.replace(/^https?:\/\//, "") || "..."} diff --git a/Client/src/Utils/toastUtils.jsx b/Client/src/Utils/toastUtils.jsx index 0f272a74e..ff3f341f8 100644 --- a/Client/src/Utils/toastUtils.jsx +++ b/Client/src/Utils/toastUtils.jsx @@ -1,5 +1,5 @@ import PropTypes from "prop-types"; -import { toast } from "react-toastify"; +import { toast, Slide } from "react-toastify"; import Alert from "../Components/Alert"; /** @@ -23,6 +23,7 @@ export const createToast = ({ autoClose: 3000, hideProgressBar: true, closeButton: false, + transition: Slide, ...config, }; diff --git a/Client/src/index.css b/Client/src/index.css index 1c80b4dab..f924671bb 100644 --- a/Client/src/index.css +++ b/Client/src/index.css @@ -168,6 +168,17 @@ body .MuiSkeleton-root { background-color: var(--env-var-color-15); } +@keyframes ripple { + from { + opacity: 1; + transform: scale(0); + } + to { + opacity: 0; + transform: scale(2.3); + } +} + @media (prefers-color-scheme: light) { :root { color: #213547;