Skip to content

Instantly share code, notes, and snippets.

@leochiu-a
Created July 25, 2021 06:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leochiu-a/c4b8ac14ed823bcf6b8326717e594910 to your computer and use it in GitHub Desktop.
Save leochiu-a/c4b8ac14ed823bcf6b8326717e594910 to your computer and use it in GitHub Desktop.
import styled from "styled-components";
export const PageTitle = styled.h1`
color: #333;
margin-top: 30px;
text-align: center;
`;
export const ProductGallery = styled.div`
display: flex;
align-items: center;
flex-direction: column;
margin: 30px 0;
gap: 24px;
`;
export const PriceFilter = styled.div`
margin-top: 30px;
display: flex;
align-items: center;
justify-content: center;
color: #333;
font-size: 20px;
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment