diff options
author | Ian C <ianc@noddybox.co.uk> | 2024-03-22 13:52:16 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2024-03-22 13:52:16 +0000 |
commit | f8af557b81c6fc03c8214e9338e904285b2d3d6c (patch) | |
tree | 5049e0ef36f46a6c14d1d45b70066e99aab7ca2c | |
parent | 3f05ee34d209fcb994cba50955cd2e301315d9bd (diff) |
Set tables to 100% width
-rw-r--r-- | Pages/Index.cshtml | 2 | ||||
-rw-r--r-- | Pages/Report.cshtml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Pages/Index.cshtml b/Pages/Index.cshtml index 469011c..06a955f 100644 --- a/Pages/Index.cshtml +++ b/Pages/Index.cshtml @@ -5,7 +5,7 @@ { <p style="color:red"><b>@Model.ErrorText</b></p> } -<table> +<table style="width:100%"> <tr> <td style="width:25%;"><b>Key</b></td> <td style="width:20%;"><b>Mime type</b></td> diff --git a/Pages/Report.cshtml b/Pages/Report.cshtml index b928ef5..ed7dbfa 100644 --- a/Pages/Report.cshtml +++ b/Pages/Report.cshtml @@ -7,7 +7,7 @@ } <h1>Count for each key</h1> -<table> +<table style="width:100%"> <tr> <td style="width:50%;"><b>Key</b></td> <td style="width:50%;"><b>Downloads</b></td> @@ -24,7 +24,7 @@ <h1>Download Details</h1> -<table> +<table style width="100%"> <tr> <td style="width:25%;"><b>Time</b></td> <td style="width:25%;"><b>Key</b></td> |