I am currently working on a nextjs project using tailwind and antd. I am facing an issue where the antd Layout component styling is being applied and I am unable to remove it.
:where(.css-dev-only-do-not-override-12upa3x).ant-layout-header
This styling is being injected from a script in the head section:
<style data-rc-order="prependQueue" data-css-hash="twrzxg" data-token-hash="vx5xn4" data-dev-cache-path="vx5xn4|Shared|ant">:where(.css-dev-only-do-not-override-12upa3x) a{color:#1677ff;text-decoration:none;background-color:transparent;outline:none;cursor:pointer;transition:color 0.3s;-webkit-text-decoration-skip:objects;}:where(.css-dev-only-do-not-override-12upa3x) a:hover{color:#69b1ff;}:where(.css-dev-only-do-not-override-12upa3x) a:active{color:#0958d9;}:where(.css-dev-only-do-not-override-12upa3x) a:active,:where(.css-dev-only-do-not-override-12upa3x) a:hover{text-decoration:none;outline:0;}:where(.css-dev-only-do-not-override-12upa3x) a:focus{text-decoration:none;outline:0;}:where(.css-dev-only-do-not-override-12upa3x) a[disabled]{color:rgba(0, 0, 0, 0.25);cursor:not-allowed;}</style>
Is there a way for me to remove this added styling?