diff --git a/ivette/src/dome/renderer/frame/style.css b/ivette/src/dome/renderer/frame/style.css index 0f744024de94cbe6fae015aa249bd0959828b03f..43dd9b6fd4a060fbc5e2a4cbf1689456cd26978e 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 f62532f281fa6a19ba562e8d3600c1061e715a91..a83d879a0141e6fe35a12ac0cc7dd8350da0684e 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 1c8f3b23a45723dceb647fad90602e909f27e067..70f0bad44d1aa8c79eca9f40ec02a2d854252118 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> ); });