diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2025-01-28 01:09:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-27 17:09:20 +0000 |
commit | 182e3896bf6c6b3aeb313d2227ff96e35fbf46bd (patch) | |
tree | 7607ada1e1e146dcd5b5c9b794035c85bc07a37d | |
parent | 77d14fb6d36d41f591ec25ed76357d741ee7f7d4 (diff) | |
download | gitea-182e3896bf6c6b3aeb313d2227ff96e35fbf46bd.tar.gz gitea-182e3896bf6c6b3aeb313d2227ff96e35fbf46bd.zip |
Fix flex width (#33414)
Fix #33409
-rw-r--r-- | web_src/css/repo/home-file-list.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web_src/css/repo/home-file-list.css b/web_src/css/repo/home-file-list.css index 19ba1f2bcb..189b6406d4 100644 --- a/web_src/css/repo/home-file-list.css +++ b/web_src/css/repo/home-file-list.css @@ -65,6 +65,7 @@ } #repo-files-table .repo-file-last-commit { + min-width: 0; /* otherwise the flex axis is not limited and the text might overflow in Pale Moon */ background: var(--color-box-header); } |