1
0
Fork 0
forked from forgejo/forgejo

Fix repo buttons overflowing

- Don't show SVG(major cause for taking up space and being shown as
"column").
- Allow it to be a new columnif the number is too big.
This commit is contained in:
Gusted 2022-04-27 15:53:52 +02:00
parent bed6577d09
commit 0ead5590cb
No known key found for this signature in database
GPG key ID: FD821B732837125F

View file

@ -2965,8 +2965,11 @@ tbody.commit-list {
}
.repo-buttons {
display: flex;
align-items: center;
display: flex;
flex-direction: row;
flex-wrap: wrap;
word-break: keep-all;
@media @mediaSm {
margin-top: 1em;
@ -3011,6 +3014,11 @@ tbody.commit-list {
pointer-events: none !important;
}
}
@media @mediaSm {
.svg {
display: none;
}
}
}
.tag-code {