From 162003ba7ac20a624fccdc4c0169dfc4ed0c8bff Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Fri, 20 May 2022 19:43:16 +0200 Subject: [PATCH] fix(core): update --- ts_web/00_commitinfo_data.ts | 2 +- ts_web/elements/dees-speechbubble.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 7a6d719..58cc0d9 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@designestate/dees-catalog', - version: '1.0.82', + version: '1.0.83', description: 'website for lossless.com' } diff --git a/ts_web/elements/dees-speechbubble.ts b/ts_web/elements/dees-speechbubble.ts index 2275491..69bb3cf 100644 --- a/ts_web/elements/dees-speechbubble.ts +++ b/ts_web/elements/dees-speechbubble.ts @@ -50,7 +50,7 @@ export class DeesSpeechbubble extends DeesElement { position: relative; display: block; box-sizing: border-box; - color: #fff; + color: ${cssManager.bdTheme('#333', '#fff')}; cursor: pointer; user-select: none; } @@ -61,7 +61,7 @@ export class DeesSpeechbubble extends DeesElement { .arrow { position: absolute; transform: rotate(45deg); - background: #333; + background: ${cssManager.bdTheme('#fff', '#333')}; height: 20px; width: 20px; left: 5px; @@ -70,7 +70,7 @@ export class DeesSpeechbubble extends DeesElement { } .maincontainer { - background: #333; + background: ${cssManager.bdTheme('#fff', '#333')}; padding: 0px 10px; border-radius: 3px; position: absolute;