From c0ad0f45700720669cfb215939dd4fab7cd62675 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Mon, 22 Jan 2024 00:59:25 +0100 Subject: [PATCH] fix(core): update --- ts_web/00_commitinfo_data.ts | 2 +- ts_web/elements/dees-simple-appdash.ts | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 1586934..8bf1174 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@design.estate/dees-catalog', - version: '1.0.257', + version: '1.0.258', description: 'website for lossless.com' } diff --git a/ts_web/elements/dees-simple-appdash.ts b/ts_web/elements/dees-simple-appdash.ts index 67b697a..c731688 100644 --- a/ts_web/elements/dees-simple-appdash.ts +++ b/ts_web/elements/dees-simple-appdash.ts @@ -35,7 +35,7 @@ export class DeesSimpleAppDash extends DeesElement { user-select: none; } .appbar { - position: absolute; + position: fixed; top: 0; height: 40px; width: 100%; @@ -47,10 +47,12 @@ export class DeesSimpleAppDash extends DeesElement { padding: 0px 16px; } .appcontent { - position: absolute; + position: fixed; top: 40px; - bottom: 0; + height: calc(100% - 40px); + bottom: 0px; width: 100%; + overflow: auto; background: ${cssManager.bdTheme('#eeeeeb', '#000')}; } `,