Lately, I've been experiencing an issue on my website where a white background pops up whenever I click on a dropdown (md-select) in my form. Initially, it only happened with forms inside a modal, but now it's affecting dropdowns across the entire page.
Upon closely examining the CSS behavior when clicking on a dropdown, I noticed something peculiar: During each click, inline styles are being applied to my body tag.
<body id="#background" style="position: fixed; width: 100%; top: -718.889px;">
I'm puzzled as to where these styles are coming from. After changing 'position: fixed' to 'position: inherit' using inspect element, the problem was resolved. However, I'm now faced with the challenge of pinpointing where this code is located within my files.