+ New Version Available
+
+
+
+
+
+ );
+}
diff --git a/src/common/component/styled/Button.js b/src/common/component/styled/Button.js
index 5c4a9908..27716734 100644
--- a/src/common/component/styled/Button.js
+++ b/src/common/component/styled/Button.js
@@ -29,6 +29,11 @@ const StyledButton = styled.button`
font-size: 14px;
line-height: 20px;
}
+ &.mini {
+ padding: 4px 10px;
+ font-size: 12px;
+ line-height: 18px;
+ }
&.danger {
border: none;
background-color: #ef4444;
diff --git a/src/index.js b/src/index.js
index c8e4dce7..95d4dfca 100644
--- a/src/index.js
+++ b/src/index.js
@@ -1,6 +1,6 @@
// import React from 'react';
import ReactDOM from "react-dom/client";
-import { Toaster } from "react-hot-toast";
+import toast, { Toaster } from "react-hot-toast";
import { Reset } from "styled-reset";
import { DndProvider } from "react-dnd";
import { HTML5Backend } from "react-dnd-html5-backend";
@@ -9,6 +9,7 @@ import "animate.css";
import * as serviceWorkerRegistration from "./serviceWorkerRegistration";
import MarkdownStyleOverride from "./common/component/MarkdownStyleOverride";
import ReduxRoutes from "./routes";
+import NewVersion from "./common/component/NewVersion";
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(
<>
@@ -20,4 +21,19 @@ root.render(