I found that when the page width is less than 768px, a class of [phone] will be added to the body tag, but I hope to customize this 768px value to 960px.
Looking forward to everyone's reply very much
thank you everyone
Hi Lu
You can customize that CSS by just overriding that class on your screen and can add your css with the !important mark.
as the 768px is size of media query. just like shown below
@media screen and (min-width: 480px) { body { background-color: lightgreen; }}
if your screen is at least 480px or greater than that.
so if you want to add your css into that you can just override that css with the same class name and query on your screen.
link for media query knowledge - https://www.w3schools.com/css/css3_mediaqueries.asp
Thank you for your help, YASHPAL.