blob: 65cbe6c93cd74bdf48843a60566b4e4a39df6362 [file]
/* A route level takes focus when it lands, so a keyboard user does not get
dropped on document.body every time the page navigates. It is a landing
target, not a control — the ring belongs to whatever they Tab to next.
Astryx draws its focus ring with box-shadow, not outline, so both are
cleared — an outline-only reset leaves a 2px ring around the whole page. */
.settingsRouteLevel:focus,
.settingsRouteLevel:focus-visible {
outline: none;
box-shadow: none;
}