Disable Autofill
input:-webkit-autofill, input:-webkit-autofill:focus { transition: background-color 600000s 0s, color 600000s 0s; }
Remove Scrollbar
::-webkit-scrollbar, ::-webkit-scrollbar:vertical { width: 0px !important; } ::-webkit-scrollbar:horizontal { width: 15px; } ::-webkit-scrollbar-track { background: #202020; border-left: 1px solid #2c2c2c; } ::-webkit-scrollbar-thumb { background: #3e3e3e; border: solid 3px #202020; border-radius: 7px; } ::-webkit-scrollbar-thumb:hover { background: white; }
How to avoid "-internal-autofill-selected" style to be applied?
Thanks for contributing an answer to Stack Overflow! Please be sure to answer the question. Provide details and share your research! Asking for help, clarification, or responding to other answers. Making statements based on opinion; back them up with references or personal experience. To learn more, see our tips on writing great answers.
https://stackoverflow.com/questions/61083813/how-to-avoid-internal-autofill-selected-style-to-be-applied

Seonglae Cho