mirror of
https://github.com/go-gitea/gitea
synced 2024-11-06 14:19:03 +01:00
Use flex wrap to layout the PR update button (#29590)
Follow #29418 I think using "flex-wrap: wrap" here is better than hard-coding the screen width. By using "flex-wrap: wrap", the UI layouts automatically for various widths (even if in some languages, the sentence might be pretty long)
This commit is contained in:
parent
df1268ca08
commit
ade6241691
1 changed files with 2 additions and 9 deletions
|
@ -935,18 +935,11 @@
|
||||||
|
|
||||||
.repository.view.issue .comment-list .comment .merge-section .item-section {
|
.repository.view.issue .comment-list .comment .merge-section .item-section {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin-top: -0.25rem;
|
gap: 0.5em;
|
||||||
margin-bottom: -0.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 991.98px) {
|
|
||||||
.repository.view.issue .comment-list .comment .merge-section .item-section {
|
|
||||||
align-items: flex-start;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.repository.view.issue .comment-list .comment .merge-section .divider {
|
.repository.view.issue .comment-list .comment .merge-section .divider {
|
||||||
|
|
Loading…
Reference in a new issue