Skip to content

Commit

Permalink
converting checkout-item styles to styled components
Browse files Browse the repository at this point in the history
  • Loading branch information
LoukrichiFouad97 committed Jul 24, 2020
1 parent 228e04b commit c612af8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 23 deletions.
23 changes: 0 additions & 23 deletions src/components/cart-item/cart-item.scss

This file was deleted.

11 changes: 11 additions & 0 deletions src/components/checkout-item/checkout-item-styles.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { styled } from "styled-components";

const CheckoutItemContainer = styled.div`
width: 100%;
display: flex;
min-height: 100px;
border-bottom: 1px solid darkgrey;
padding: 15px 0;
font-size: 20px;
align-items: center;
`;
1 change: 1 addition & 0 deletions src/components/sign-up/sign-up.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ class SignUp extends Component {
);

console.log(user);

// create user document
await createUserProfileDocument(user, { displayName });

Expand Down

0 comments on commit c612af8

Please sign in to comment.