fix(core): update

This commit is contained in:
Philipp Kunz 2022-08-18 02:15:41 +02:00
parent c86f7d466c
commit 2a84e2c270
2 changed files with 6 additions and 6 deletions

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@designestate/dees-catalog', name: '@designestate/dees-catalog',
version: '1.0.99', version: '1.0.100',
description: 'website for lossless.com' description: 'website for lossless.com'
} }

View File

@ -60,9 +60,9 @@ export class DeesMobilenavigation extends DeesElement {
constructor() { constructor() {
super(); super();
this.init().then(() => { /* this.init().then(() => {
this.show(); this.show();
}); }); */
} }
/** /**
@ -86,14 +86,14 @@ export class DeesMobilenavigation extends DeesElement {
height: 100vh; height: 100vh;
min-width: 280px; min-width: 280px;
transform: translateX(200px); transform: translateX(200px);
color: #fff; color: ${cssManager.bdTheme('#333', '#fff')};
z-index: 250; z-index: 250;
opacity: 0; opacity: 0;
padding: 16px 32px; padding: 16px 32px;
right: 0px; right: 0px;
top: 0px; top: 0px;
bottom: 0px; bottom: 0px;
background: #000; background: ${cssManager.bdTheme('#eeeeeb', '#000')};;
border-left: 1px dashed #444; border-left: 1px dashed #444;
pointer-events: none; pointer-events: none;
} }
@ -113,7 +113,7 @@ export class DeesMobilenavigation extends DeesElement {
border-radius: 3px; border-radius: 3px;
} }
.menuItem:hover { .menuItem:hover {
background: #333; background: ${cssManager.bdTheme('#CCC', '#333')};;
} }
.heading { .heading {