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

Configure Feed

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

css: fix table overflow

+19 -12
+1
static/style.css
··· 258 258 gap: 1rem; 259 259 padding: 0.5rem; 260 260 background: var(--light-gray); 261 + overflow-x: auto; 261 262 } 262 263 263 264 .file-content {
+18 -12
templates/file.html
··· 1 1 {{ define "file" }} 2 2 <html> 3 - {{ template "head" . }} 3 + {{ template "head" . }} 4 4 {{ template "repoheader" . }} 5 5 <body> 6 6 {{ template "nav" . }} 7 7 <main> 8 8 <p>{{ .path }}</p> 9 9 <div class="file-wrapper"> 10 - <div class="line-numbers"> 11 - {{- range .linecount }} 12 - <a id="L{{ . }}" href="#L{{ . }}">{{ . }}</a> 13 - {{- end -}} 14 - </div> 15 - <div class="file-content"> 16 - <span></span> 17 - <pre> 18 - {{- .content -}} 19 - </pre> 20 - </div> 10 + <table > 11 + <tbody><tr> 12 + <td class="line-numbers"> 13 + <pre> 14 + {{- range .linecount }} 15 + <a id="L{{ . }}" href="#L{{ . }}">{{ . }}</a> 16 + {{- end -}} 17 + </pre> 18 + </td> 19 + <td class="file-content"> 20 + <pre> 21 + {{- .content -}} 22 + </pre> 23 + </td> 24 + </tbody></tr> 25 + </table> 26 + </div> 21 27 </main> 22 28 </body> 23 29 </html>