Closed
Description
Introduction
In the mobile view there is a lot of spacing and padding in the directory list of a repo.
Proposal
FiliusPatris tried to inspect the directory list with the firefox devtools and was able to remove the unnecessary spacing with the following css:
.name {
display: table-cell;
max-width: 20%;
}
.message {
display: table-cell;
width: 100%;
}
.age {
display: none;
}
Credits
The main idea and the proposed css changes come from the codeberg user FiliusPatris. For further information have a look at the issue on codeberg: https://codeberg.org/Codeberg/Community/issues/190