-
Notifications
You must be signed in to change notification settings - Fork 0
fix(public): remove heading-level skips on home and sibling pages #27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -5,7 +5,7 @@ | |||||
| .f{padding:34px 0;border-bottom:1px solid var(--hair)} | ||||||
| .f .top{display:flex;gap:18px;align-items:baseline} | ||||||
| .f .idx{font-family:'Fraunces',serif;font-style:italic;font-weight:200;font-size:30px;color:var(--brass-lt);line-height:1} | ||||||
| .f h3{font-size:22px;font-weight:600;letter-spacing:-.014em;line-height:1.3} | ||||||
| .f h2{font-size:22px;font-weight:600;letter-spacing:-.014em;line-height:1.3} | ||||||
| .f .body{margin-left:48px} | ||||||
| .f p{margin-top:12px;font-size:16px;line-height:1.74;color:var(--soft)} | ||||||
| .ev{margin-top:16px;background:rgba(255,253,248,.75);border:1px solid var(--hair);border-left:2px solid var(--brass); | ||||||
|
|
@@ -17,7 +17,7 @@ | |||||
| .fix b{color:var(--brass);font-weight:600} | ||||||
| .notrun{margin-top:40px;background:rgba(176,74,46,.05);border:1px solid rgba(176,74,46,.22); | ||||||
| border-radius:10px;padding:26px 30px} | ||||||
| .notrun h4{font-family:'Fraunces',serif;font-weight:300;font-size:21px;letter-spacing:-.018em;color:var(--sig)} | ||||||
| .notrun h3{font-family:'Fraunces',serif;font-weight:300;font-size:21px;letter-spacing:-.018em;color:var(--sig)} | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win Remove the unnecessary quotes from Stylelint reports Proposed fix- .notrun h3{font-family:'Fraunces',serif;font-weight:300;font-size:21px;letter-spacing:-.018em;color:var(--sig)}
+ .notrun h3{font-family:Fraunces,serif;font-weight:300;font-size:21px;letter-spacing:-.018em;color:var(--sig)}📝 Committable suggestion
Suggested change
🧰 Tools🪛 Stylelint (17.14.0)[error] 20-20: Expected no quotes around "Fraunces" (font-family-name-quotes) (font-family-name-quotes) 🤖 Prompt for AI AgentsSource: Linters/SAST tools |
||||||
| .notrun p{margin-top:11px;font-size:15px;line-height:1.72;color:var(--soft)} | ||||||
|
|
||||||
| /* extracted from inline style attributes — CSP style-src 'self' blocks those */ | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
Remove the unnecessary quotes from
Fraunces.Stylelint reports
font-family-name-quoteson Line 19. Remove the quotes around this single-word family name. The computed font-family value remains unchanged.Proposed fix
📝 Committable suggestion
🧰 Tools
🪛 Stylelint (17.14.0)
[error] 19-19: Expected no quotes around "Fraunces" (font-family-name-quotes)
(font-family-name-quotes)
🤖 Prompt for AI Agents
Source: Linters/SAST tools