diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-05-30 08:34:05 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-05-30 08:34:05 +0200 |
| commit | 759a16a460e0aebcb4dbc9421062f818067c9c55 (patch) | |
| tree | 35b8a0b6ec4d780aa05cd64c5cc1f4d01659e640 | |
| parent | 054f2a628ddec3fc1f301f4f01da7646199c9b0b (diff) | |
| download | slcl-759a16a460e0aebcb4dbc9421062f818067c9c55.tar.gz | |
page.c: Apply max-width to table
This will help users to read tables with long file names.
| -rw-r--r-- | page.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1331,6 +1331,10 @@ int page_style(struct http_response *const r) " justify-content: center;\n" " text-decoration: auto;\n" "}\n" + "table\n" + "{\n" + " max-width: 50%;\n" + "}\n" "tr:nth-child(even)\n" "{\n" " background-color: lightgray;\n" |
