I needed to make some changes to a css file but didn't want to alter it directly for personal reasons. Instead, I created a new css file where I overrode the specific lines that needed changing. However, now I'm wondering how I can cancel out this line of code:
@media (max-width: 480px)
.nav-collapse {
-webkit-transform: translate3d(0, 0, 0);
}
The -webkit-transform property is causing issues and I would like to disable it somehow. Additionally, I'm curious about what exactly this line of code is doing as understanding its function might help me find an alternative solution.