mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-08-10 07:11:18 +02:00
- Removed ambiguous aliases: phpstan, cs-check, syntax - Split lint-biome into lint-css and lint-js with correct paths - Added lint meta-recipe and fix recipe (biome --unsafe + php-cs-fixer) - Fixed FormBootstrap dead null check, CSS shorthand override bug - Updated phpstan baseline, suppressed noDescendingSpecificity/noInnerDeclarations - Applied ~74 biome auto-fixes across CSS/JS
12 lines
365 B
CSS
12 lines
365 B
CSS
/* ============================================================
|
|
FOCUS — Consistent keyboard-focus ring for all interactive
|
|
elements.
|
|
============================================================ */
|
|
|
|
:focus-visible {
|
|
outline: none;
|
|
box-shadow: 0 0 0 2px var(--accent-primary);
|
|
border-radius: var(--radius);
|
|
padding: var(--space-3xs) var(--space-xs);
|
|
}
|