Skip to content

Commit

Permalink
feat(layout): Added container styled component
Browse files Browse the repository at this point in the history
  • Loading branch information
HoseaCodes committed Nov 29, 2021
1 parent cc130b9 commit fba9c8d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/Layout/Container/styledContainer.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import styled, {css, } from 'styled-components';

export const StyledContainer = styled.section`
padding: 4%;
background-color: #1a1e23;
${props => props.Primary && css`
`}
`;

0 comments on commit fba9c8d

Please sign in to comment.