How to hide breadcrumb links on mobile using Turbo theme?

Hi, can anyone tell me what code I would need to hide breadcrumb links on mobile but display them on desktop? I am using Turbo theme.

@vivame

Please share your website URL and password if any. I will check and provide a solution here.

Thanks!

hello @vivame

please Go to Online Store-> Theme->Edit code then go to assets/theme.css ->paste the below code at the top of the file.

@media only screen and (max-width: 749px){
.breadcrumb__wrapper{
        display: none;
}
}