fix(core): update

This commit is contained in:
Philipp Kunz 2024-01-22 00:59:25 +01:00
parent d56eb602a9
commit c0ad0f4570
2 changed files with 6 additions and 4 deletions

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@design.estate/dees-catalog', name: '@design.estate/dees-catalog',
version: '1.0.257', version: '1.0.258',
description: 'website for lossless.com' description: 'website for lossless.com'
} }

View File

@ -35,7 +35,7 @@ export class DeesSimpleAppDash extends DeesElement {
user-select: none; user-select: none;
} }
.appbar { .appbar {
position: absolute; position: fixed;
top: 0; top: 0;
height: 40px; height: 40px;
width: 100%; width: 100%;
@ -47,10 +47,12 @@ export class DeesSimpleAppDash extends DeesElement {
padding: 0px 16px; padding: 0px 16px;
} }
.appcontent { .appcontent {
position: absolute; position: fixed;
top: 40px; top: 40px;
bottom: 0; height: calc(100% - 40px);
bottom: 0px;
width: 100%; width: 100%;
overflow: auto;
background: ${cssManager.bdTheme('#eeeeeb', '#000')}; background: ${cssManager.bdTheme('#eeeeeb', '#000')};
} }
`, `,