fix display of long commit messages on small screens
1 file changed, 1 insertion(+), 1 deletion(-)
changed files
M templates/log.go → templates/log.go
@@ -24,7 +24,7 @@ func Log(data PageData, commits []*git.CommitReference) g.Node { return Div(Class("log"), g.Map(commits, func(commit *git.CommitReference) g.Node { return g.Group{ - Div( + Div(Class("commit-header"), Div( A( Href(fmt.Sprintf("/%s/commit/%s", data.Name, commit.Hash.String())),