diff --git a/src/common/components/Grid/Grid.style.ts b/src/common/components/Grid/Grid.style.ts index ed80011..41c087d 100644 --- a/src/common/components/Grid/Grid.style.ts +++ b/src/common/components/Grid/Grid.style.ts @@ -1,11 +1,12 @@ import styled from "@emotion/styled"; export const GridContainer = styled.div<{ rows: number; cols: number }>` - position: absolute; + position: sticky; z-index: -1; inset: 0; width: 100%; + height: 100vh; display: grid; grid-template-rows: repeat(${(props) => props.rows}, 1fr);