author | Lars Hjemli <hjemli@gmail.com> | 2008-04-14 08:00:59 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-04-14 08:07:43 (UTC) |
commit | adf61225c40dd89e2bb1af0087767aee66791c4e (patch) (side-by-side diff) | |
tree | 915a5e0ea10cd4a723e047daa3485ab5dd290f88 /cgit.css | |
parent | 76ba6287bfb533baca7285b107b5d975581d449d (diff) | |
download | cgit-adf61225c40dd89e2bb1af0087767aee66791c4e.zip cgit-adf61225c40dd89e2bb1af0087767aee66791c4e.tar.gz cgit-adf61225c40dd89e2bb1af0087767aee66791c4e.tar.bz2 |
Fix css font-family
When the sidebar was introduced in v0.7 the default font-family property
got messed up, but this commit should fix the issue.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.css | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,9 +3,9 @@ body, table { margin: 0em; } body { - font-family: sans; + font-family: sans-serif; font-size: 10pt; color: #333; background: white; padding: 4px; |