diff options
author | Kyle D <kdumontnu@gmail.com> | 2024-01-05 09:38:56 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-05 17:38:56 +0000 |
commit | e522e774cae2240279fc48c349fc513c9d3353ee (patch) | |
tree | c310ffbae1dd03d4dd3ffd7b682f180e3bbc3b7f /web_src | |
parent | dd5693387e0642e1aba05b01eeb18139ce90ef5e (diff) | |
download | gitea-e522e774cae2240279fc48c349fc513c9d3353ee.tar.gz gitea-e522e774cae2240279fc48c349fc513c9d3353ee.zip |
Add merge arrow direction and update styling (#28523)
Close https://github.com/go-gitea/gitea/issues/28522
~Adds some [negative
margin](https://tailwindcss.com/docs/margin#using-negative-values)
helper css classes using tailwind's [prefix
syntax](https://tailwindcss.com/docs/configuration#prefix)~
### Before

### After

Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/css/repo.css | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/web_src/css/repo.css b/web_src/css/repo.css index e37788505e..6b6be99f74 100644 --- a/web_src/css/repo.css +++ b/web_src/css/repo.css @@ -1166,8 +1166,10 @@ flex-wrap: wrap; } -.repository .choose.branch .svg { - margin-right: 10px; +.repository .choose .compare-separator { + width: 100%; + margin-top: -1rem; + text-align: center; } .repository.compare.pull .comment.form .content::before, |