diff options
author | silverwind <me@silverwind.io> | 2024-05-12 06:02:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-12 04:02:25 +0000 |
commit | 301eaf60bfb1e4a784763cb066bc9fd1da86468b (patch) | |
tree | 2caeb7f8442478641e20942d8fb63abe99e36ec1 /web_src/css | |
parent | 46b7004f050bd2fdaf9800794cf2c1e9eeb08d51 (diff) | |
download | gitea-301eaf60bfb1e4a784763cb066bc9fd1da86468b.tar.gz gitea-301eaf60bfb1e4a784763cb066bc9fd1da86468b.zip |
Fix file path width in repo non-homepage view (#30951)
Fixes: https://github.com/go-gitea/gitea/issues/30940
<img width="1310" alt="Screenshot 2024-05-11 at 20 48 41"
src="https://github.com/go-gitea/gitea/assets/115237/f163dfd4-1299-421f-a99e-cd0c793e0e3d">
Diffstat (limited to 'web_src/css')
-rw-r--r-- | web_src/css/repo.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/web_src/css/repo.css b/web_src/css/repo.css index d42b3b45bd..56235f8ebe 100644 --- a/web_src/css/repo.css +++ b/web_src/css/repo.css @@ -2256,6 +2256,10 @@ td .commit-summary { justify-content: flex-end; } +.repo-button-row[data-is-homepage="false"] .repo-button-row-right { + flex-grow: 0; +} + @media (max-width: 991px) { .repository:not(.wiki) .repo-button-row { flex-direction: column; |