+
@@ -85,9 +102,11 @@ export const LayoutHeader = () => {
-
-
-
+ {hideSwitcher ? null : (
+
+
+
+ )}
);
diff --git a/libs/components/layout/src/header/Logo/InfoModal.tsx b/libs/components/layout/src/header/Logo/InfoModal.tsx
index 590c40e1b7..a0521860d7 100644
--- a/libs/components/layout/src/header/Logo/InfoModal.tsx
+++ b/libs/components/layout/src/header/Logo/InfoModal.tsx
@@ -22,7 +22,7 @@ export const InfoModal = ({ open, onClose }: ModalProps) => {
-
+
);
@@ -35,7 +35,7 @@ const Container = styled('div')({
transform: 'translate(-50%, -50%)',
width: '60%',
maxWidth: '1000px',
- minWidth: '840px',
+ minWidth: '860px',
borderRadius: '28px',
backgroundColor: '#fff',
padding: '48px 48px 40px 48px',
diff --git a/libs/components/ui/src/model/index.tsx b/libs/components/ui/src/model/index.tsx
index baeb5db9ac..85041a5145 100644
--- a/libs/components/ui/src/model/index.tsx
+++ b/libs/components/ui/src/model/index.tsx
@@ -32,11 +32,13 @@ export const TransitionsModal = (props: TransitionsModalProps) => {
onClose={props.onClose}
closeAfterTransition
>
-
-
- {props.children}
-
-
+
+
+
+ {props.children}
+
+
+
);
};
diff --git a/libs/components/ui/src/popover/Popover.tsx b/libs/components/ui/src/popover/Popover.tsx
index ec919811dc..2639afce36 100644
--- a/libs/components/ui/src/popover/Popover.tsx
+++ b/libs/components/ui/src/popover/Popover.tsx
@@ -25,8 +25,11 @@ export const placementToContainerDirection: Record<
'auto-end': 'none',
};
-export const Popover = (props: PropsWithChildren) => {
- const { popoverDirection, placement, content, children, style } = props;
+export const Popover = ({
+ popoverDirection,
+ ...props
+}: PropsWithChildren) => {
+ const { placement, content, children, style } = props;
return (