From 1ea518376cb29e7ce141ec20d52a21b009250fad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nicole=20miko=C5=82ajczyk?= Date: Wed, 15 Oct 2025 19:26:35 +0200 Subject: [PATCH] pl-fe: styles migrations MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: nicole mikołajczyk --- packages/pl-fe/src/components/ui/layout.tsx | 19 ++++--- packages/pl-fe/src/features/ui/index.tsx | 2 +- packages/pl-fe/src/styles/new/layout.scss | 55 +++++++++++++++++++-- 3 files changed, 62 insertions(+), 14 deletions(-) diff --git a/packages/pl-fe/src/components/ui/layout.tsx b/packages/pl-fe/src/components/ui/layout.tsx index 25c84986d..c010a3daa 100644 --- a/packages/pl-fe/src/components/ui/layout.tsx +++ b/packages/pl-fe/src/components/ui/layout.tsx @@ -25,13 +25,12 @@ interface LayoutComponent extends React.FC { /** Layout container, to hold Sidebar, Main, and Aside. */ const Layout: LayoutComponent = ({ children, fullWidth }) => ( -
+
@@ -42,8 +41,8 @@ const Layout: LayoutComponent = ({ children, fullWidth }) => ( /** Left sidebar container in the UI. */ const Sidebar: React.FC = ({ children, shrink }) => ( -
- +
+ {children}
@@ -56,8 +55,8 @@ const Main: React.FC> = ({ children, classN return (
{children} @@ -67,8 +66,8 @@ const Main: React.FC> = ({ children, classN /** Right sidebar container in the UI. */ const Aside: React.FC = ({ children }) => ( -