diff options
author | pistasjis <[email protected]> | 2023-05-19 17:51:21 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2023-05-19 09:51:21 -0600 |
commit | 2d236ead3e0476ae3470a89b3b1b250cf4e4d7d3 (patch) | |
tree | 2f2d3d3b21c94ee20acbff8b0344d1e78afcafb5 | |
parent | 38cb587e0f1b38db2c9fb422b4892e48753f00c0 (diff) | |
download | caddy-2d236ead3e0476ae3470a89b3b1b250cf4e4d7d3.tar.gz caddy-2d236ead3e0476ae3470a89b3b1b250cf4e4d7d3.zip |
fileserver: Fix file browser footer in grid mode (#5536)
* Fix file browser footer in grid
Signed-off-by: Odyssey <[email protected]>
* Fix file browser footer while in grid mode
Signed-off-by: Pistasj <[email protected]>
* Do mholt's suggestions
Signed-off-by: Odyssey <[email protected]>
---------
Signed-off-by: Odyssey <[email protected]>
Signed-off-by: Pistasj <[email protected]>
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | modules/caddyhttp/fileserver/browse.html | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index e154526b3..d6ee0e812 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,7 @@ Caddyfile.* # build artifacts and helpers cmd/caddy/caddy cmd/caddy/caddy.exe +cmd/caddy/tmp/*.exe # mac specific .DS_Store diff --git a/modules/caddyhttp/fileserver/browse.html b/modules/caddyhttp/fileserver/browse.html index 2afea5ee4..a9e7272c1 100644 --- a/modules/caddyhttp/fileserver/browse.html +++ b/modules/caddyhttp/fileserver/browse.html @@ -104,6 +104,7 @@ body { font-size: 16px; text-rendering: optimizespeed; background-color: #f3f6f7; + min-height: 100vh; } img, |