diff --git a/src/components/Elements/MainModal/backend/Tabs.jsx b/src/components/Elements/MainModal/backend/Tabs.jsx index acfc5b88..5abacb40 100644 --- a/src/components/Elements/MainModal/backend/Tabs.jsx +++ b/src/components/Elements/MainModal/backend/Tabs.jsx @@ -72,7 +72,7 @@ const Tabs = (props) => { viewBox="0 0 123 123" fill="none" xmlns="http://www.w3.org/2000/svg" - className="w-10 h-10" + className="w-[40px] h-[40px]" > @@ -184,41 +184,49 @@ const Tabs = (props) => { return (
-
+
{navbarLogo} - {navbarButtons.map(({ tab, icon }, index) => ( -
+
+
+ {props.current === 'settings' && ( +
+ {props.children.map((tab, index) => ( + onClick(nextTab, tab.props.name)} + navbarTab={props.navbar || false} + /> + ))} + {reminderInfo} +
+ )}
{props.children.map((tab, index) => { if (tab.props.label !== currentTab) { diff --git a/src/components/Elements/MainModal/scss/modules/_modalTabContent.scss b/src/components/Elements/MainModal/scss/modules/_modalTabContent.scss index 89c258d2..bc44f884 100644 --- a/src/components/Elements/MainModal/scss/modules/_modalTabContent.scss +++ b/src/components/Elements/MainModal/scss/modules/_modalTabContent.scss @@ -3,6 +3,7 @@ .modalTabContent { width: 100% !important; border-radius: 15px; + min-height: 69vh; /* button { @include modal-button(standard); } */ diff --git a/src/components/Elements/MainModal/scss/modules/_sidebar.scss b/src/components/Elements/MainModal/scss/modules/_sidebar.scss index 909f8214..76c79bbc 100644 --- a/src/components/Elements/MainModal/scss/modules/_sidebar.scss +++ b/src/components/Elements/MainModal/scss/modules/_sidebar.scss @@ -10,7 +10,7 @@ background: t($modal-sidebar); border-radius: 12px 0 0 12px; overflow: hidden auto; - height: 80vh; + height: 67vh; min-width: 250px; .mainTitle {