diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-06-20 09:50:19 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-06-21 12:25:52 +0200 |
commit | 97f041de8cb593d46ccb15141d92e1984d9847d1 (patch) | |
tree | 4826a72780bbd7546a20590e0b6e9ecbb81572f0 /views/forum_view.pug | |
parent | 28dbcd115dc23d920bf30de512a63efed8eeb58f (diff) | |
download | server-97f041de8cb593d46ccb15141d92e1984d9847d1.tar.gz |
Some more mobile friendly layout tuning.
Diffstat (limited to 'views/forum_view.pug')
-rw-r--r-- | views/forum_view.pug | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/views/forum_view.pug b/views/forum_view.pug index 6100e60..990d3d3 100644 --- a/views/forum_view.pug +++ b/views/forum_view.pug @@ -7,7 +7,6 @@ html meta(http-equiv="refresh" content=3600) style. tbody a { display: block } - td:nth-child(3) { text-align: right } body include header article @@ -17,16 +16,14 @@ html thead tr th Subject - th Author - th Replies - th Time + th + th tbody each row in threads tr td: a(href="/forum/thread/"+row.thread_id)= row.subject - td: a(href="/user/"+row.author_name)= row.author_name - td= row.replies - td= row.mtime + td.r= row.count + td.w= row.mtime tfoot tr td(colspan=4) |