From e2160b7ff8c1dc12e637a1acf1c2cf66d0a90af7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Loi=CC=88c=20Correnson?= <loic.correnson@cea.fr> Date: Tue, 9 Jan 2024 12:56:39 +0100 Subject: [PATCH] [dome] fixed various layout styles --- ivette/src/dome/renderer/frame/style.css | 1 + ivette/src/dome/renderer/layout/style.css | 5 ++--- ivette/src/sandbox/icons.tsx | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ivette/src/dome/renderer/frame/style.css b/ivette/src/dome/renderer/frame/style.css index 0f744024de9..43dd9b6fd4a 100644 --- a/ivette/src/dome/renderer/frame/style.css +++ b/ivette/src/dome/renderer/frame/style.css @@ -107,6 +107,7 @@ .dome-xSideBarSection-title { position: sticky ; + z-index: +1; top: 0px ; padding-top: 0px; padding-bottom: 0px ; diff --git a/ivette/src/dome/renderer/layout/style.css b/ivette/src/dome/renderer/layout/style.css index f62532f281f..a83d879a014 100644 --- a/ivette/src/dome/renderer/layout/style.css +++ b/ivette/src/dome/renderer/layout/style.css @@ -20,9 +20,8 @@ .dome-xBoxes-grid { - flex: 1 1 auto ; - overflow: auto ; - display: grid ; + flex: 1 1 auto; + overflow: auto; display: grid; grid-auto-rows: auto; grid-auto-flow: row; diff --git a/ivette/src/sandbox/icons.tsx b/ivette/src/sandbox/icons.tsx index 1c8f3b23a45..70f0bad44d1 100644 --- a/ivette/src/sandbox/icons.tsx +++ b/ivette/src/sandbox/icons.tsx @@ -52,7 +52,7 @@ function Gallery(): JSX.Element { gallery.forEach((icons, section) => { sections.push( <Section key={section} defaultUnfold label={section}> - <Grid columns="auto auto">{icons}</Grid> + <Grid style={{paddingLeft: 24}} columns="auto auto">{icons}</Grid> </Section> ); }); -- GitLab