vitepress-logo-sizing — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited vitepress-logo-sizing (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
When replacing the default VitePress logo with a custom SVG, the logo can appear distorted (stretched or squished) in dark mode. This happens because VitePress's default CSS sets height: unset on the logo image in certain theme variants, which removes the height constraint and lets the SVG expand to its intrinsic aspect ratio.
.vitepress/theme/overrides.css.vitepress/theme/overrides.css, find the logo image ruleheight: unset with an explicit height: height: 36px (adjust as needed)/* BAD — causes distortion in dark mode */
.VPNavBarTitle .logo {
height: unset;
}
/* GOOD — explicit height prevents distortion */
.VPNavBarTitle .logo {
height: 36px;
}36px is a starting pointwidth instead of height, test on mobile viewports where the nav bar is narrower~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.