mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-08-10 15:21:22 +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
16 lines
329 B
CSS
16 lines
329 B
CSS
/* ============================================================
|
|
LINKS — Global link styles.
|
|
Root: element selector (a)
|
|
============================================================ */
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
font-weight: 400;
|
|
}
|
|
|
|
a:hover {
|
|
color: var(--accent-primary);
|
|
text-decoration: none;
|
|
}
|