fix editor double overflow scroll

This commit is contained in:
Mads Rasmussen
2022-08-08 19:35:48 +02:00
parent 60ce94952d
commit ce4d2efd61
4 changed files with 6 additions and 1 deletions

View File

@@ -15,6 +15,10 @@ import { internalManifests } from './temp-internal-manifests';
@customElement('umb-app')
export class UmbApp extends UmbContextProviderMixin(LitElement) {
static styles = css`
:host {
overflow: hidden;
}
:host,
#router-slot {
display: block;

View File

@@ -17,6 +17,7 @@ export class UmbBackofficeMain extends UmbContextConsumerMixin(LitElement) {
display: block;
width: 100%;
height: 100%;
overflow: hidden;
}
`,
];

View File

@@ -49,6 +49,7 @@ export class UmbEditorExtensionsElement extends UmbContextConsumerMixin(LitEleme
render() {
return html`
<umb-editor-entity alias="Umb.Editor.Extensions">
<h3 slot="name">Extensions</h3>
<uui-box headline="Extensions">
<uui-table>
<uui-table-head>

View File

@@ -34,7 +34,6 @@ export class UmbEditorLayout extends LitElement {
display: flex;
flex: 1;
flex-direction: column;
gap: 16px;
}
#footer {