From ed1c18b8ac25a85f96a70fe083f54d98b97d545c Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Fri, 20 May 2022 21:04:59 +0200 Subject: [PATCH] fix(core): update --- ts_web/00_commitinfo_data.ts | 2 +- ts_web/elements/dees-speechbubble.ts | 16 +++++++++++++--- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 9018b6c..73b96c4 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.85', + version: '1.0.86', description: 'website for lossless.com' } diff --git a/ts_web/elements/dees-speechbubble.ts b/ts_web/elements/dees-speechbubble.ts index 19cb6a1..acd1be8 100644 --- a/ts_web/elements/dees-speechbubble.ts +++ b/ts_web/elements/dees-speechbubble.ts @@ -58,6 +58,16 @@ export class DeesSpeechbubble extends DeesElement { display: none; } + .maincontainer { + position: relative; + transition: all 0.2s; + margin-left: 0px; + } + + .maincontainer:hover { + margin-left: 3px; + } + .arrow { position: absolute; transform: rotate(45deg); @@ -69,7 +79,7 @@ export class DeesSpeechbubble extends DeesElement { border-radius: 2px; } - .maincontainer { + .speechbubble { background: ${cssManager.bdTheme('#fff', '#333')}; padding: 0px 10px; border-radius: 3px; @@ -119,9 +129,9 @@ export class DeesSpeechbubble extends DeesElement { public render(): TemplateResult { return html` -
+
-
👋 Hey! We are consulting.
+
👋 Hey! We are consulting.
`; }