[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:
parent
c0639abf4e
commit
35f29c28bf
1 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue