web frontend for git repositories, written in Go git.pocka.jp/legit.git
3

Configure Feed

Select the types of activity you want to include in your feed.

Add more spaces to Markdown headings

Those were so packed and hard to read.

Shota FUJI (Mar 28, 2025, 10:45 AM +0900) 291d38c0 44c4ba1f

+7 -6
+1
static/global.css
··· 38 38 --space-lg: calc(var(--space-md) * var(--space-scale)); 39 39 --space-xl: calc(var(--space-lg) * var(--space-scale)); 40 40 --space-xxl: calc(var(--space-xl) * var(--space-scale)); 41 + --space-xxxl: calc(var(--space-xxl) * var(--space-scale)); 41 42 42 43 --radii-sm: 3px; 43 44 --radii-md: 6px;
+6 -6
static/repo-top.css
··· 32 32 .readme h1 { 33 33 font-size: var(--font-xl); 34 34 font-weight: var(--font-chonk); 35 - margin: var(--space-xxl) 0; 35 + margin: var(--space-xxxl) 0; 36 36 line-height: 1.2; 37 37 } 38 38 39 39 .readme h2 { 40 40 font-size: var(--font-lg); 41 41 font-weight: var(--font-chonk); 42 - margin: var(--space-xxl) 0; 42 + margin: var(--space-xxxl) 0; 43 43 line-height: 1.2; 44 44 } 45 45 46 46 .readme h3 { 47 47 font-size: var(--font-md); 48 48 font-weight: var(--font-chonk); 49 - margin: var(--space-xxl) 0; 49 + margin: var(--space-xxxl) 0; 50 50 margin-block-end: var(--space-xl); 51 51 line-height: 1.2; 52 52 } ··· 54 54 .readme h4 { 55 55 font-size: var(--font-md); 56 56 font-weight: var(--font-thick); 57 - margin: var(--space-xl) 0; 57 + margin: var(--space-xxl) 0; 58 58 line-height: 1.2; 59 59 } 60 60 61 61 .readme h5 { 62 62 font-size: var(--font-sm); 63 63 font-weight: var(--font-chonk); 64 - margin: var(--space-xl) 0; 64 + margin: var(--space-xxl) 0; 65 65 line-height: 1.2; 66 66 } 67 67 68 68 .readme h6 { 69 69 font-size: var(--font-sm); 70 70 font-weight: var(--font-thick); 71 - margin: var(--space-lg) 0; 71 + margin: var(--space-xl) 0; 72 72 line-height: 1.2; 73 73 } 74 74