mirror of
https://github.com/go-gitea/gitea
synced 2025-08-16 22:48:27 +00:00
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:
@@ -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 {
|
||||
|
Reference in New Issue
Block a user