Skip to content

Commit 98ab795

Browse files
authored
Merge pull request #3601 from meese-enterprises/fix/misc-ui-fixes
Website UI improvements: hero x-index order and sidebar scrollbar
2 parents 29c3be1 + f28363e commit 98ab795

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/src/components/DocumentationLayout.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export const SidebarContainer = styled.aside<{ isSidebarOpen: boolean }>`
9292
left: ${({ isSidebarOpen }) => (isSidebarOpen ? "0px" : "-120vw")};
9393
height: calc(100vh - 136px);
9494
display: flex;
95-
overflow-y: scroll;
95+
overflow-y: auto;
9696
transition: all ease-out 0.25s;
9797
z-index: 50;
9898
background-color: ${tm(({ colors }) => colors.neutral0)};

docs/src/components/landingBlocks/HeroBlock.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const Block = styled.div`
4545
padding: 0 0 24px;
4646
min-height: 100px;
4747
&.content {
48-
z-index: 1;
48+
z-index: 2;
4949
}
5050
& svg {
5151
margin: 0 auto;

0 commit comments

Comments
 (0)