79551839

Date: 2025-04-03 01:58:07
Score: 1
Natty:
Report link

I solved it by overriding the Bootstrap CSS turning off the box-shadow that Bootstrap uses and adding an outline with an offset. Is there a more elegant way to do this other than overriding Bootstrap with !important?

   *:focus-visible {
    box-shadow: none !important;
    outline: 3px solid black !important;
    outline-offset: 2px !important;
}
Reasons:
  • Whitelisted phrase (-2): I solved
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Luke K