fix(core): update

This commit is contained in:
Philipp Kunz 2022-05-20 19:43:16 +02:00
parent 5f793f0acc
commit 162003ba7a
2 changed files with 4 additions and 4 deletions

View File

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

View File

@ -50,7 +50,7 @@ export class DeesSpeechbubble extends DeesElement {
position: relative; position: relative;
display: block; display: block;
box-sizing: border-box; box-sizing: border-box;
color: #fff; color: ${cssManager.bdTheme('#333', '#fff')};
cursor: pointer; cursor: pointer;
user-select: none; user-select: none;
} }
@ -61,7 +61,7 @@ export class DeesSpeechbubble extends DeesElement {
.arrow { .arrow {
position: absolute; position: absolute;
transform: rotate(45deg); transform: rotate(45deg);
background: #333; background: ${cssManager.bdTheme('#fff', '#333')};
height: 20px; height: 20px;
width: 20px; width: 20px;
left: 5px; left: 5px;
@ -70,7 +70,7 @@ export class DeesSpeechbubble extends DeesElement {
} }
.maincontainer { .maincontainer {
background: #333; background: ${cssManager.bdTheme('#fff', '#333')};
padding: 0px 10px; padding: 0px 10px;
border-radius: 3px; border-radius: 3px;
position: absolute; position: absolute;