web frontend for git (tangled's grandpa)
7
fork

Configure Feed

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

css: wrong name

+5 -5
+3 -3
static/style.css
··· 92 92 border-bottom: 1.5px solid var(--gray); 93 93 } 94 94 95 - .repo-index { 95 + .index { 96 96 display: grid; 97 97 grid-template-columns: 6em 1fr 7em; 98 98 grid-row-gap: 0.5em; 99 99 } 100 100 101 - .repo-index-headings { 101 + .index-headings { 102 102 display: grid; 103 103 grid-template-columns: 6em 1fr 7em; 104 104 padding-bottom: 1.2em; ··· 106 106 } 107 107 108 108 @media (max-width: 385px) { 109 - .repo-index { 109 + .index { 110 110 grid-row-gap: 0.8em; 111 111 } 112 112 }
+2 -2
templates/index.html
··· 8 8 </header> 9 9 <body> 10 10 <main> 11 - <div class="repo-index-headings small-heading"> 11 + <div class="index-headings small-heading"> 12 12 <div>repository</div> 13 13 <div>description</div> 14 14 <div>idle</div> 15 15 </div> 16 - <div class="repo-index"> 16 + <div class="index"> 17 17 {{ range .info }} 18 18 <div><a href="/{{ .Name }}">{{ .Name }}</a></div> 19 19 <div>{{ .Desc }}</div>