diff options
author | silverwind <me@silverwind.io> | 2024-06-03 19:21:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-03 17:21:45 +0000 |
commit | 0f0db6a14fd10a493ba73f211e2e627c3884d114 (patch) | |
tree | 5c7de8773de36f642182c2be4e03719ec908d64f /web_src/css/repo.css | |
parent | cb27c438a82fec9f2476f6058bc5dcda2617aab5 (diff) | |
download | gitea-0f0db6a14fd10a493ba73f211e2e627c3884d114.tar.gz gitea-0f0db6a14fd10a493ba73f211e2e627c3884d114.zip |
Remove unnecessary inline style for tab-size (#31224)
Move the rule to the parent node. `tab-size` is inherited so will work
just as before.
Diffstat (limited to 'web_src/css/repo.css')
-rw-r--r-- | web_src/css/repo.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web_src/css/repo.css b/web_src/css/repo.css index d3036744fe..e44bc9811b 100644 --- a/web_src/css/repo.css +++ b/web_src/css/repo.css @@ -2322,6 +2322,7 @@ tbody.commit-list { min-height: 12em; max-height: calc(100vh - 10.5rem); overflow-y: auto; + tab-size: 4; } .comment-diff-data pre { |