Night mode looks bad in the mobile application I developed. Since I don't want to remove the night mode, I just want to hide it from mobile users. For this, I need css customizations that will make the site look like day mode even if night mode is selected (for mobile version).
Since it takes time to edit the whole theme with css, I tried something like the following code but it didn't work. What should I do?
@media (max-width: 767px) {
@import url('https://WEBSITE.com/assets/forum-1f509011.css');
}