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:
parent
445cb242f2
commit
48eff57ed0
1 changed files with 2 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue