Fix useless scrollbar on related posts

When all related posts fit on the same screen, there was a useless
scrollbar. I never noticed this because Firefox incorrectly hides the
scrollbar automatically. The issue is visible on Chromium.
This commit is contained in:
2025-08-08 13:45:30 -05:00
parent 84004d3ac0
commit de20387b5a

View File

@@ -919,7 +919,7 @@ aside.quote {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
gap: 20px; gap: 20px;
overflow-x: scroll; overflow-x: auto;
} }
/* }}} */ /* }}} */