css: fix table overflow
This commit is contained in:
parent
4f5d35ffd2
commit
d1774f5a6d
|
@ -258,6 +258,7 @@ a:hover {
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
padding: 0.5rem;
|
padding: 0.5rem;
|
||||||
background: var(--light-gray);
|
background: var(--light-gray);
|
||||||
|
overflow-x: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.file-content {
|
.file-content {
|
||||||
|
|
|
@ -1,23 +1,29 @@
|
||||||
{{ define "file" }}
|
{{ define "file" }}
|
||||||
<html>
|
<html>
|
||||||
{{ template "head" . }}
|
{{ template "head" . }}
|
||||||
{{ template "repoheader" . }}
|
{{ template "repoheader" . }}
|
||||||
<body>
|
<body>
|
||||||
{{ template "nav" . }}
|
{{ template "nav" . }}
|
||||||
<main>
|
<main>
|
||||||
<p>{{ .path }}</p>
|
<p>{{ .path }}</p>
|
||||||
<div class="file-wrapper">
|
<div class="file-wrapper">
|
||||||
<div class="line-numbers">
|
<table >
|
||||||
{{- range .linecount }}
|
<tbody><tr>
|
||||||
<a id="L{{ . }}" href="#L{{ . }}">{{ . }}</a>
|
<td class="line-numbers">
|
||||||
{{- end -}}
|
<pre>
|
||||||
</div>
|
{{- range .linecount }}
|
||||||
<div class="file-content">
|
<a id="L{{ . }}" href="#L{{ . }}">{{ . }}</a>
|
||||||
<span></span>
|
{{- end -}}
|
||||||
<pre>
|
</pre>
|
||||||
{{- .content -}}
|
</td>
|
||||||
</pre>
|
<td class="file-content">
|
||||||
</div>
|
<pre>
|
||||||
|
{{- .content -}}
|
||||||
|
</pre>
|
||||||
|
</td>
|
||||||
|
</tbody></tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue