I need to display a banner with the text "All items..." on every page. Currently, I have set the position
attribute to fixed
, but the banner is aligned to the left and I want it to be centered horizontally instead. Below is my code snippet:
export const Bar = styled.div`
position: fixed;
bottom: 0px;
z-index: 100;
height: 5rem;
background-color: ${(props) => props.theme.tile.backgroundColor};
display: flex;
justify-content: center;
align-items: center;
padding: 0 2rem;
font-size: ${(props) => props.theme.typography.mediumFontSize};
`;