commit 2b66005fae63f2317fe85bac7baf8ae99fb0c7da
parent b5eebbe4180af4843911bf44900b883d26d6fe2d
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date: Sun, 26 Jul 2020 09:49:55 -0500
Specify header image size
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/stagit-index.c b/stagit-index.c
@@ -73,7 +73,7 @@ writeheader(FILE *fp)
fprintf(fp, "</title>\n<link rel=\"icon\" type=\"image/png\" href=\"%sfavicon.png\" />\n", relpath);
fprintf(fp, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%sstyle.css\" />\n", relpath);
fputs("</head>\n<body>\n<header>\n", fp);
- fprintf(fp, "<img style=\"float:right;width:5em;\" alt=\"\" src=\"/%slogo.svg\">\n", relpath);
+ fprintf(fp, "<img style=\"float:right\" width=\"80\" height=\"80\" alt=\"\" src=\"/%slogo.svg\">\n", relpath);
fprintf(fp, "<h1>%s</h1>\n", title);
fprintf(fp, "<p><em>");
xmlencode(fp, description, strlen(description));