Merge pull request #12651 from frappe/mergify/bp/version-13-pre-release/pr-12650

This commit is contained in:
Suraj Shetty 2021-03-23 15:54:19 +05:30 committed by GitHub
commit dac5dd7005
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -485,6 +485,19 @@ body {
}
}
}
@media (max-width: map-get($grid-breakpoints, "sm")) {
.widget-body {
flex-direction: column;
.onboarding-steps-wrapper {
min-width: none;
}
.onboarding-step-preview {
padding-left: 0;
padding-top: var(--padding-lg);
}
}
}
}
&.shortcut-widget-box {
@ -733,3 +746,18 @@ body {
height: 200px;
}
}
[data-page-route="Workspaces"] {
@media (min-width: map-get($grid-breakpoints, "lg")) {
.layout-main {
height: calc(100vh - var(--navbar-height) - var(--page-head-height) - 5px);
.layout-side-section, .layout-main-section-wrapper {
height: 100%;
overflow-y: scroll;
}
.desk-sidebar {
margin-bottom: var(--margin-2xl);
}
}
}
}