Compare commits

..

12 Commits

Author SHA1 Message Date
6ae21d73aa 1.0.269 2024-01-22 18:39:31 +01:00
941871991f fix(core): update 2024-01-22 18:39:31 +01:00
497c38f426 1.0.268 2024-01-22 18:30:36 +01:00
bfaa1623d9 fix(core): update 2024-01-22 18:30:35 +01:00
5ffa5a2adc 1.0.267 2024-01-22 18:30:01 +01:00
16d1375e47 fix(core): update 2024-01-22 18:30:00 +01:00
30eda34f37 1.0.266 2024-01-22 17:32:58 +01:00
2cc7eb1ead fix(core): update 2024-01-22 17:32:58 +01:00
64f5bee801 1.0.265 2024-01-22 17:29:53 +01:00
9d57f983dd fix(core): update 2024-01-22 17:29:53 +01:00
8ccd21df36 1.0.264 2024-01-22 17:25:55 +01:00
c22c994d12 fix(core): update 2024-01-22 17:25:55 +01:00
4 changed files with 18 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "@design.estate/dees-catalog", "name": "@design.estate/dees-catalog",
"version": "1.0.263", "version": "1.0.269",
"private": false, "private": false,
"description": "website for lossless.com", "description": "website for lossless.com",
"main": "dist_ts_web/index.js", "main": "dist_ts_web/index.js",

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.263', version: '1.0.269',
description: 'website for lossless.com' description: 'website for lossless.com'
} }

View File

@@ -41,6 +41,9 @@ export class DeesSimpleAppDash extends DeesElement {
:host { :host {
color: ${cssManager.bdTheme('#333', '#ccc')}; color: ${cssManager.bdTheme('#333', '#ccc')};
user-select: none; user-select: none;
display: block;
position: relative;
height: 100%;
} }
.appbar { .appbar {
position: fixed; position: fixed;
@@ -142,6 +145,8 @@ export class DeesSimpleAppDash extends DeesElement {
terminal.style.position = 'absolute'; terminal.style.position = 'absolute';
terminal.style.top = '0px'; terminal.style.top = '0px';
terminal.style.left = '0px'; terminal.style.left = '0px';
terminal.style.right = '0px';
terminal.style.bottom = '0px';
terminal.style.opacity = '0'; terminal.style.opacity = '0';
terminal.style.transform = 'translateY(20px)'; terminal.style.transform = 'translateY(20px)';
terminal.style.transition = 'all 0.2s'; terminal.style.transition = 'all 0.2s';

View File

@@ -42,7 +42,18 @@ export class DeesSimpleLogin extends DeesElement {
align-items: center; /* aligns vertically */ align-items: center; /* aligns vertically */
width: 100%; width: 100%;
height: 100%; height: 100%;
top: 0px;
left: 0px;
} }
.slotContainer {
position: absolute;
width: 100%;
height: 100%;
top: 0px;
left: 0px;
}
.login { .login {
min-width: 320px; min-width: 320px;
min-height: 100px; min-height: 100px;