redlib
redlib copied to clipboard
💡 Feature request: Add new layouts suited for desktop users (grid, waterfall, etc)
Is your feature request related to a problem? Please describe.
These layouts make sense on mobile phones, but I personally think they are terrible for desktop users and hope many will agree. They waste so many precious space on monitor, don't show much content, and needs a lot of scrolling action.
Describe the feature you would like to be implemented
It would be great if Redlib add a grid or waterfall layout as an option.
(just a random waterfall layout image grabbed from google)
Describe alternatives you've considered
Additional context / screenshot
yu can try this css:
main,#column_one{
max-width:100%;
}
#posts{
columns: 4;
column-gap: 10px;
}
.post{
break-inside: avoid-column;
}
it was a little confusing to read. the posts are at different heights and your eye has to keep jumping up and down as it scans horizontally. but maybe I can get used to it