aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/cgit.css10
-rw-r--r--modules/cgit.nix9
2 files changed, 17 insertions, 2 deletions
diff --git a/modules/cgit.css b/modules/cgit.css
index 97acc37..c7c030a 100644
--- a/modules/cgit.css
+++ b/modules/cgit.css
@@ -27,9 +27,15 @@
}
}
+html, body {
+ background: var(--bg-color);
+ margin: 0;
+ min-height: 100%;
+}
+
div#cgit {
- padding: 0em;
- margin: 0em;
+ max-width: 1400px;
+ margin: 0em auto;
font-family: "CMU Serif", system-ui;
font-size: 10pt;
color: var(--text-color);
diff --git a/modules/cgit.nix b/modules/cgit.nix
index 28b3531..8c411a7 100644
--- a/modules/cgit.nix
+++ b/modules/cgit.nix
@@ -77,6 +77,15 @@
# Syntax highlighting
source-filter = "${pkgs.cgit}/lib/cgit/filters/syntax-highlighting.py";
about-filter = "${pkgs.cgit}/lib/cgit/filters/about-formatting.sh";
+
+ # Which file about-filter renders on a repo's summary page - tried in
+ # order, first match wins (a list here becomes repeated `readme=`
+ # lines, cgitrc's own convention for this setting).
+ readme = [
+ ":README.md"
+ ":readme.md"
+ ":README"
+ ];
};
};