summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authorGravatar default2024-05-09 08:05:21 +0200
committerGravatar default2024-05-09 08:05:21 +0200
commit06599de966374f77fbcf71e85ce4a70080b8cf83 (patch)
tree9cbd16c17ee14ace52fe83db324f5c77a4c14e72 /html.c
parentRewritten content_search() to read from both timelines. (diff)
parentMerge pull request 'Set avatars and custom emoji as square (fixes display in ... (diff)
downloadpenes-snac2-06599de966374f77fbcf71e85ce4a70080b8cf83.tar.gz
penes-snac2-06599de966374f77fbcf71e85ce4a70080b8cf83.tar.xz
penes-snac2-06599de966374f77fbcf71e85ce4a70080b8cf83.zip
Merge branch 'master' of grunfink-codeberg:grunfink/snac2
Diffstat (limited to 'html.c')
-rw-r--r--html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/html.c b/html.c
index 42996e6..4109929 100644
--- a/html.c
+++ b/html.c
@@ -55,7 +55,7 @@ xs_str *replace_shortnames(xs_str *s, xs_list *tag, int ems)
55 tag_list = xs_dup(tag); 55 tag_list = xs_dup(tag);
56 } 56 }
57 57
58 xs *style = xs_fmt("height: %dem; vertical-align: middle;", ems); 58 xs *style = xs_fmt("height: %dem; width: %dem; vertical-align: middle;", ems, ems);
59 59
60 xs_list *p = tag_list; 60 xs_list *p = tag_list;
61 char *v; 61 char *v;