Rammohan0504 nagasurendra commited on
Commit
dd4fda8
·
verified ·
1 Parent(s): 4d59589

Update templates/cart.html (#5)

Browse files

- Update templates/cart.html (fcf434bea406f7a4e36296843a8d37a2b7a6c65b)


Co-authored-by: Surendra <[email protected]>

Files changed (1) hide show
  1. templates/cart.html +8 -9
templates/cart.html CHANGED
@@ -74,16 +74,15 @@
74
  }
75
 
76
  /* Responsive for mobile devices */
77
-
78
-
79
- .cart-item img {
80
- width: 100%; /* Fill the image container */
81
- height: auto !important; /* Maintain aspect ratio */
82
- object-fit: contain;
83
- border-radius: 8px; /* Optional: rounded corners */
84
- transition: transform 0.3s;/* Ensure the full image is visible */
85
-
86
  }
 
 
87
  .cart-item img:hover {
88
  transform: scale(1.05);
89
  }
 
74
  }
75
 
76
  /* Responsive for mobile devices */
77
+ .cart-item img {
78
+ width: 70px;
79
+ height: 70px;
80
+ object-fit: cover;
81
+ border-radius: 5px;
82
+ border: 1px solid #ffcc80; /* Light orange border around images */
 
 
 
83
  }
84
+
85
+
86
  .cart-item img:hover {
87
  transform: scale(1.05);
88
  }