how to add the higher lower option on the quantity selection on mobile?

Hello,

does somebody know how to add the higher lower option on the quantity selection on mobile?

Thank you!

@KimGottwald

use below css code in your theme.scss.css file refer to the screenshot below

@media screen and (max-width:600px){
	.product-single__quantity input#Quantity[type=number]::-webkit-inner-spin-button, 
	.product-single__quantity input#Quantity[type=number]::-webkit-outer-spin-button {  
	
	   opacity: 1;
	
	}
}

This is not working sadly.

@KimGottwald

it should work i have tested it. can i fix that for you ?

I added the code but its not showing on my iPhone.

@media screen and (max-width: 600px){
	.product-single__quantity input#Quantity[type=number]::-webkit-inner-spin-button, 
	.product-single__quantity input#Quantity[type=number]::-webkit-outer-spin-button {  
	   opacity: 1;
	   -webkit-appearance: initial !important;
	}
}