Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1.  
  2. .checkout-item {
  3. width: 100%;
  4. display: flex;
  5. min-height: 100px;
  6. border-bottom: 1px solid darkgrey;
  7. padding: 15px 0;
  8. font-size: 20px;
  9. align-items: center;
  10.  
  11. .image-container {
  12. width: 23%;
  13. padding-right: 15px;
  14.  
  15. img {
  16. width: 100%;
  17. height: 100%;
  18. }
  19. }
  20. .name,
  21. .quantity,
  22. .price {
  23. width: 23%;
  24. }
  25.  
  26. .quantity {
  27. padding-left: 20px;
  28. }
  29.  
  30. .remove-button {
  31. padding-left: 12px;
  32. cursor: pointer;
  33. }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement