Double click on app screen scales svg

I am developing an Ionic 4 app and it contains SVG icons inside it. Whenever I double click on the app screen it adds a style to transform and scale the SVG to 3 times.

This is an unwanted effect and I haven’t added styles for this animation inside my project base.

Please let me know why it is happening and how could I avoid adding those styles to the SVG icons inside my app?

Style Attribute {
transition-duration: 300ms;
transform: translate3d(0px, 0px, 0px) scale(3);
}