[GITEA] fix round borders in release list

Refs: https://codeberg.org/forgejo/forgejo/pulls/1451

(cherry picked from commit 99877e8c38)
This commit is contained in:
Malte Jürgens 2023-09-16 21:23:35 +02:00 committed by Earl Warren
parent c0639abf4e
commit 35f29c28bf
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -64,11 +64,11 @@
}
.repository.releases #release-list > li .detail .download .list li:first-of-type {
border-radius: var(--border-radius) 0 0 var(--border-radius);
border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.repository.releases #release-list > li .detail .download .list li:last-of-type {
border-radius: 0 var(--border-radius) var(--border-radius) 0;
border-radius: 0 0 var(--border-radius) var(--border-radius);
}
.repository.releases #release-list > li .detail .dot {