Fix sync tab content clipping — enable vertical scrolling

sync-tab-content had overflow:hidden which clipped long content like
the file import preview table and server playlist editor. Changed to
overflow-y:auto so all sync tabs scroll when content exceeds the
container height.
This commit is contained in:
Broque Thomas 2026-04-12 12:06:29 -07:00
parent 445cb242f2
commit 48eff57ed0

View file

@ -11894,7 +11894,8 @@ body.helper-mode-active #dashboard-activity-feed:hover {
flex-direction: column;
gap: 15px;
flex-grow: 1;
overflow: hidden;
overflow-y: auto;
overflow-x: hidden;
}
.sync-tab-content.active {