mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-09-25 01:53:03 +02:00
style: fix biome check errors (import order + formatting)
npx biome check reported 14 errors on app/public/assets/css/,
app/public/assets/js/app/ and scripts/:
- assist/source/organizeImports: scripts/css-content-sources.mjs,
scripts/css-unused-report.mjs
- format: 9 CSS files + 3 JS files
Fixed via biome check --write. Verified: npx biome check clean,
npm run build succeeds, PHPUnit 316 tests / 628 assertions pass.
This commit is contained in:
@@ -39,11 +39,19 @@
|
||||
}
|
||||
|
||||
/* Indent sub-headings in TOC */
|
||||
.toc-list .toc-level-2 { padding-left: var(--space-s); }
|
||||
.toc-list .toc-level-3 { padding-left: var(--space-m); }
|
||||
.toc-list .toc-level-2 {
|
||||
padding-left: var(--space-s);
|
||||
}
|
||||
.toc-list .toc-level-3 {
|
||||
padding-left: var(--space-m);
|
||||
}
|
||||
|
||||
.toc-list .toc-level-2 a { font-size: var(--step--1); }
|
||||
.toc-list .toc-level-3 a { font-size: var(--step--2); }
|
||||
.toc-list .toc-level-2 a {
|
||||
font-size: var(--step--1);
|
||||
}
|
||||
.toc-list .toc-level-3 a {
|
||||
font-size: var(--step--2);
|
||||
}
|
||||
|
||||
/* ── Public TOC (details/summary block) ─────────────────────────────────── */
|
||||
.toc {
|
||||
|
||||
Reference in New Issue
Block a user