Skip to content

Commit

Permalink
Fix table layout
Browse files Browse the repository at this point in the history
  • Loading branch information
cchan authored Nov 4, 2019
1 parent 5fc0c2c commit 5a1377c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions views/admin/list.jade
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ html
table.table.table-striped(style="table-layout: fixed;")
tr
th.col-sm-2 Key
th.col-sm-7 URL
th.col-sm-3(colspan=3) Clicks
th.col-sm-8 URL
th.col-sm-2 Clicks
each redirect in redirects
tr
td.col-sm-2(style="overflow: hidden; text-overflow: ellipsis; word-break: keep-all;")
a(href=("/"+redirect.key))=redirect.key
td.col-sm-7(style="overflow: hidden; text-overflow: ellipsis; word-break: keep-all;")
td.col-sm-8(style="overflow: hidden; text-overflow: ellipsis; word-break: keep-all;")
a(href=redirect.url)= redirect.url
td.col-sm-1= redirect.clicks
td.col-sm-2= redirect.clicks

0 comments on commit 5a1377c

Please sign in to comment.