How do I change the image size on cart page please?

Hi, go to theme>edit code>assets>component-cart-items.css then press Ctrl + F and search for .cart-item__image . When you find this class, add width and height.

Css code should look like below

.cart-item__image {
height: 100px;
width:100px;
}