diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-06-06 13:43:37 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-06-06 13:56:30 +0100 |
commit | aabfdd765ea0217c12307a1effa3852c00eac6a4 (patch) | |
tree | 43c982c4ea16cb3c91ade026945283c6f1200c84 | |
parent | 64aebf5ce25a40c841cabd8d484f7434eb0f0e75 (diff) |
Equally spaced columns on dashboard.
-rw-r--r-- | templates/web/default/dashboard/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/web/default/dashboard/index.html b/templates/web/default/dashboard/index.html index be38234f2..308042d0d 100644 --- a/templates/web/default/dashboard/index.html +++ b/templates/web/default/dashboard/index.html @@ -135,9 +135,9 @@ <th scope="col">14-30 days old</th> </tr> <tr> - <td><ul>[% INCLUDE list, list = lists.1 %]</ul></td> - <td><ul>[% INCLUDE list, list = lists.2 %]</ul></td> - <td><ul>[% INCLUDE list, list = lists.3 %]</ul></td> + <td width="34%"><ul>[% INCLUDE list, list = lists.1 %]</ul></td> + <td width="33%"><ul>[% INCLUDE list, list = lists.2 %]</ul></td> + <td width="33%"><ul>[% INCLUDE list, list = lists.3 %]</ul></td> </tr> </table> |