diff options
author | silverwind <me@silverwind.io> | 2023-07-25 23:54:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-25 23:54:20 +0200 |
commit | e62ea96ada9e24aaf103ec700eb7728b597926a7 (patch) | |
tree | cb6ded4d0709e4b417f884c93089953a812f2fe0 /web_src/css | |
parent | c7f6e9fc2f1812f517a5a4b6f3864a7bb51523fc (diff) | |
download | gitea-e62ea96ada9e24aaf103ec700eb7728b597926a7.tar.gz gitea-e62ea96ada9e24aaf103ec700eb7728b597926a7.zip |
Increase table cell horizontal padding (#26140)
Extract from https://github.com/go-gitea/gitea/pull/26043, just the
padding increase.
Before and After (hard to notice, but it's there):
<img width="427" alt="Screenshot 2023-07-25 at 19 37 12"
src="https://github.com/go-gitea/gitea/assets/115237/9543dcda-eccb-4739-b7dd-06b076108ab4">
<img width="420" alt="Screenshot 2023-07-25 at 19 37 26"
src="https://github.com/go-gitea/gitea/assets/115237/0a9c3724-81a1-4c67-a13b-4b728a51fc3a">
Co-authored-by: Giteabot <teabot@gitea.io>
Diffstat (limited to 'web_src/css')
-rw-r--r-- | web_src/css/base.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web_src/css/base.css b/web_src/css/base.css index 542fb1fd74..f517b6b2ca 100644 --- a/web_src/css/base.css +++ b/web_src/css/base.css @@ -883,7 +883,7 @@ a.label, .ui.table > thead > tr > th, .ui.table > tbody > tr > td, .ui.table > tr > td { - padding: 6px 3px; + padding: 6px 5px; } /* use more horizontal padding on first and last items for visuals */ .ui.table > thead > tr > th:first-of-type, |