From 43c3b0529a721ab7b323b83c78ff3257824b455b Mon Sep 17 00:00:00 2001 From: matushl Date: Sun, 24 Nov 2024 12:23:46 +0100 Subject: [PATCH 1/3] Display main menu close button --- src/components/PageLayout/MenuMain/MenuMain.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/PageLayout/MenuMain/MenuMain.tsx b/src/components/PageLayout/MenuMain/MenuMain.tsx index df0b0b72..cad3a402 100644 --- a/src/components/PageLayout/MenuMain/MenuMain.tsx +++ b/src/components/PageLayout/MenuMain/MenuMain.tsx @@ -107,7 +107,6 @@ export const MenuMain: FC = () => { top: 24, left: {xs: 'auto', md: 24}, right: {xs: 24, md: 'auto'}, - display: {xs: 'block', md: 'none'}, }} /> {menuItemsIsLoading && ( From 95c4633d82f963822fb1b3dce94b8ebaa44a094a Mon Sep 17 00:00:00 2001 From: matushl Date: Sun, 24 Nov 2024 12:24:13 +0100 Subject: [PATCH 2/3] set currentColor to Strom.svg fill --- src/components/Crossroad/Crossroad.tsx | 2 +- src/svg/strom.svg | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/Crossroad/Crossroad.tsx b/src/components/Crossroad/Crossroad.tsx index bfe229e5..877c7d41 100644 --- a/src/components/Crossroad/Crossroad.tsx +++ b/src/components/Crossroad/Crossroad.tsx @@ -36,7 +36,7 @@ export const Crossroad: React.FC = () => { - + diff --git a/src/svg/strom.svg b/src/svg/strom.svg index 2eb53c67..f047f039 100644 --- a/src/svg/strom.svg +++ b/src/svg/strom.svg @@ -1,5 +1,5 @@ - - - - + + + + From 0c2f9d6a278ce0948927a6939398b28f5d49b40f Mon Sep 17 00:00:00 2001 From: matushl Date: Sun, 24 Nov 2024 12:33:05 +0100 Subject: [PATCH 3/3] Fix tree logo position for pages with banner --- src/components/PageLayout/PageLayout.tsx | 2 +- .../PageLayout/StromLogo/StromLogo.tsx | 30 +++++++++++-------- 2 files changed, 18 insertions(+), 14 deletions(-) diff --git a/src/components/PageLayout/PageLayout.tsx b/src/components/PageLayout/PageLayout.tsx index fc315843..d2ba2375 100644 --- a/src/components/PageLayout/PageLayout.tsx +++ b/src/components/PageLayout/PageLayout.tsx @@ -41,7 +41,7 @@ export const PageLayout: FC = ({contentWidth = 2, title = '', c - + diff --git a/src/components/PageLayout/StromLogo/StromLogo.tsx b/src/components/PageLayout/StromLogo/StromLogo.tsx index 904884d3..86edd4f8 100644 --- a/src/components/PageLayout/StromLogo/StromLogo.tsx +++ b/src/components/PageLayout/StromLogo/StromLogo.tsx @@ -1,31 +1,35 @@ import {Box} from '@mui/material' import {FC} from 'react' +import Strom from '@/svg/strom.svg' + export const StromLogo: FC = () => { return ( - + + + + + + ) }