79745215

Date: 2025-08-24 22:51:22
Score: 0.5
Natty:
Report link

Your outline issue comes from Tailwind’s preflight CSS overriding Angular Material.

Fix it by disabling preflight in tailwind.config.js:

corePlugins: {
  preflight: false,
}

or reset borders in styles.css:

*, *::before, *::after {
  border-style: none;
}

That will fix the alignment.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Vinay Kandula