- {children}
+
+ {children}
{debouncedLoading && }
-
+
);
};
diff --git a/packages/ui/src/components/Notification/index.module.scss b/packages/ui/src/components/Notification/index.module.scss
new file mode 100644
index 000000000..236b39044
--- /dev/null
+++ b/packages/ui/src/components/Notification/index.module.scss
@@ -0,0 +1,67 @@
+@use '@/scss/underscore' as _;
+
+.overlay {
+ background: transparent;
+ position: absolute;
+}
+
+.notification {
+ padding: _.unit(3) _.unit(4);
+ font: var(--font-body);
+ color: var(--color-text);
+ background: var(--color-surface-variant);
+ border: _.border(var(--color-border-variant));
+ border-radius: var(--radius);
+ max-width: 520px;
+ margin: 0 auto _.unit(2);
+ box-shadow: var(--shadow-1);
+
+ &:focus-visible {
+ outline: none;
+ }
+}
+
+.container {
+ @include _.flex_row;
+}
+
+.icon {
+ color: var(--color-outline);
+ width: 20px;
+ height: 20px;
+ margin-right: _.unit(3);
+}
+
+.message {
+ flex: 1;
+ margin-right: _.unit(3);
+}
+
+.link {
+ text-decoration: underline;
+ cursor: pointer;
+}
+
+:global(body.mobile) {
+ .overlay {
+ top: _.unit(6);
+ left: _.unit(5);
+ right: _.unit(5);
+ }
+}
+
+
+:global(body.desktop) {
+ .overlay {
+ top: _.unit(-6);
+ left: 0;
+ width: 100%;
+ transform: translateY(-100%);
+ }
+
+ .link {
+ &:hover {
+ color: var(--color-primary);
+ }
+ }
+}
diff --git a/packages/ui/src/components/Notification/index.tsx b/packages/ui/src/components/Notification/index.tsx
new file mode 100644
index 000000000..2806b3c10
--- /dev/null
+++ b/packages/ui/src/components/Notification/index.tsx
@@ -0,0 +1,38 @@
+import classNames from 'classnames';
+import React from 'react';
+import { useTranslation } from 'react-i18next';
+import ReactModal, { Props as ModalProps } from 'react-modal';
+
+import InfoIcon from '@/assets/icons/info-icon.svg';
+
+import * as styles from './index.module.scss';
+
+type Props = ModalProps & {
+ message: string;
+ onClose: () => void;
+};
+
+const Notification = ({ className, message, onClose, overlayClassName, ...rest }: Props) => {
+ const { t } = useTranslation(undefined, { keyPrefix: 'main_flow' });
+
+ return (
+ document.querySelector('main') ?? document.body}
+ onRequestClose={onClose}
+ {...rest}
+ >
+
+
+ );
+};
+
+export default Notification;
diff --git a/packages/ui/src/containers/AppNotification/index.tsx b/packages/ui/src/containers/AppNotification/index.tsx
new file mode 100644
index 000000000..6226cc333
--- /dev/null
+++ b/packages/ui/src/containers/AppNotification/index.tsx
@@ -0,0 +1,21 @@
+import React, { useState, useEffect, useCallback } from 'react';
+import { useTranslation } from 'react-i18next';
+
+import Notification from '@/components/Notification';
+
+const AppNotification = () => {
+ const { t } = useTranslation(undefined, { keyPrefix: 'main_flow' });
+ const [isOpen, setIsOpen] = useState(false);
+
+ const onClose = useCallback(() => {
+ setIsOpen(false);
+ }, []);
+
+ useEffect(() => {
+ setIsOpen(true);
+ }, []);
+
+ return ;
+};
+
+export default AppNotification;
diff --git a/packages/ui/src/scss/_desktop.scss b/packages/ui/src/scss/_desktop.scss
index 464433c3d..9589dd502 100644
--- a/packages/ui/src/scss/_desktop.scss
+++ b/packages/ui/src/scss/_desktop.scss
@@ -12,9 +12,11 @@ $font-family: -apple-system,
@mixin colors-light-theme {
--color-base: linear-gradient(0deg, rgba(93, 52, 242, 14%), rgba(93, 52, 242, 14%)), linear-gradient(0deg, rgba(120, 118, 127, 2%), rgba(120, 118, 127, 2%)), #f7f8f8;
--color-surface: #fff;
+ --color-surface-variant: #e5e1ec;
--color-text: #191c1d; // Neutral-10
--color-text-disabled: #c4c7c7;
--color-border: #c4c7c7;
+ --color-border-variant: #c9c5d0;
--color-caption: #747778;
--color-icon: #747778;
--color-focused: rgba(25, 28, 29, 16%); // 16% Neutral-10
@@ -39,9 +41,11 @@ $font-family: -apple-system,
@mixin colors-dark-theme {
--color-base: linear-gradient(0deg, rgba(202, 190, 255, 14%), rgba(202, 190, 255, 14%)), linear-gradient(0deg, rgba(196, 199, 199, 2%), rgba(196, 199, 199, 2%)), #191c1d;
--color-surface: #191c1d;
+ --color-surface-variant: #47464e;
--color-text: #f7f8f8; // Neutral-10
--color-text-disabled: #5c5f60;
--color-border: #5c5f60;
+ --color-border-variant: #5f5d67;
--color-caption: #a9acac;
--color-icon: #a9acac;
--color-focused: rgba(247, 248, 248, 16%); // 16% Neutral-10
diff --git a/packages/ui/src/scss/_mobile.scss b/packages/ui/src/scss/_mobile.scss
index bbb6c8056..102756cdb 100644
--- a/packages/ui/src/scss/_mobile.scss
+++ b/packages/ui/src/scss/_mobile.scss
@@ -12,6 +12,7 @@ $font-family: -apple-system,
@mixin colors-light-theme {
--color-base: #fff;
--color-surface: #fff;
+ --color-surface-variant: #e5e1ec;
--color-text: #191c1d;
--color-icon: #747778;
--color-caption: #747778;
@@ -28,6 +29,7 @@ $font-family: -apple-system,
@mixin colors-dark-theme {
--color-base: #191c1d;
--color-surface: #191c1d;
+ --color-surface-variant: #47464e;
--color-text: #f7f8f8;
--color-icon: #a9acac;
--color-caption: #a9acac;