Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions projects/packages/forms/changelog/fix-sidebar-width-form
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Significance: patch
Type: fixed
Comment: Minor bug fix


13 changes: 13 additions & 0 deletions projects/packages/forms/src/dashboard/inbox/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,19 @@
}
}

.is-nav-unification.auto-fold .jp-forms__inbox__dataviews .dataviews-footer {

@media (min-width: #{ (breakpoints.$break-medium + 1) }) {
left: 272px;
width: calc(100% - 272px);
}

@media (min-width: #{ (breakpoints.$break-large + 1) }) {
left: variables.$admin-sidebar-width;
width: calc(100% - variables.$admin-sidebar-width);
}
}

/*
* Compensation for the width of the sidebar when the Sidebar
* is manually collapsed.
Expand Down
Loading