@design.estate/dees-catalog 1.0.266 → 1.0.269
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist_bundle/bundle.js +12 -3
- package/dist_bundle/bundle.js.map +2 -2
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/elements/dees-simple-appdash.js +3 -1
- package/dist_ts_web/elements/dees-simple-login.js +11 -2
- package/dist_watch/bundle.js +12 -1
- package/dist_watch/bundle.js.map +2 -2
- package/package.json +1 -1
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements/dees-simple-appdash.ts +2 -0
- package/ts_web/elements/dees-simple-login.ts +10 -1
package/package.json
CHANGED
|
@@ -145,6 +145,8 @@ export class DeesSimpleAppDash extends DeesElement {
|
|
|
145
145
|
terminal.style.position = 'absolute';
|
|
146
146
|
terminal.style.top = '0px';
|
|
147
147
|
terminal.style.left = '0px';
|
|
148
|
+
terminal.style.right = '0px';
|
|
149
|
+
terminal.style.bottom = '0px';
|
|
148
150
|
terminal.style.opacity = '0';
|
|
149
151
|
terminal.style.transform = 'translateY(20px)';
|
|
150
152
|
terminal.style.transition = 'all 0.2s';
|
|
@@ -35,7 +35,7 @@ export class DeesSimpleLogin extends DeesElement {
|
|
|
35
35
|
color: ${cssManager.bdTheme('#333', '#fff')};
|
|
36
36
|
user-select: none;
|
|
37
37
|
}
|
|
38
|
-
.loginContainer
|
|
38
|
+
.loginContainer {
|
|
39
39
|
position: absolute;
|
|
40
40
|
display: flex;
|
|
41
41
|
justify-content: center; /* aligns horizontally */
|
|
@@ -45,6 +45,15 @@ export class DeesSimpleLogin extends DeesElement {
|
|
|
45
45
|
top: 0px;
|
|
46
46
|
left: 0px;
|
|
47
47
|
}
|
|
48
|
+
|
|
49
|
+
.slotContainer {
|
|
50
|
+
position: absolute;
|
|
51
|
+
width: 100%;
|
|
52
|
+
height: 100%;
|
|
53
|
+
top: 0px;
|
|
54
|
+
left: 0px;
|
|
55
|
+
}
|
|
56
|
+
|
|
48
57
|
.login {
|
|
49
58
|
min-width: 320px;
|
|
50
59
|
min-height: 100px;
|