Skip to content

Commit 9ca1a44

Browse files
MaxDatenclaude
andcommitted
style: Fix tech tag row spacing with inline-block and margins
- Add display: inline-block to enable vertical margin support - Adjust padding to 4px 6px for compact tags - Add margin: 0 4px 8px 0 for consistent gaps between wrapped rows 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent b7da724 commit 9ca1a44

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/templates/template.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,12 +312,14 @@ li li {
312312
Code & Technology Tags
313313
-------------------------------------------------------------------------- */
314314
code {
315+
display: inline-block;
315316
font-family: var(--font-mono);
316317
font-size: 0.8125rem;
317318
white-space: nowrap;
318319
background-color: var(--code-bg);
319320
color: var(--code-text);
320-
padding: 4px 8px;
321+
padding: 4px 6px;
322+
margin: 0 4px 8px 0;
321323
border-radius: var(--radius-sm);
322324
border: 1px solid rgba(0, 0, 0, 0.08);
323325
}

0 commit comments

Comments
 (0)