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:
parent
bed6577d09
commit
0ead5590cb
1 changed files with 9 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue