fix(core): update

This commit is contained in:
Philipp Kunz 2022-05-24 09:13:15 +02:00
parent 68ccc02699
commit 0dc8e21e07
2 changed files with 5 additions and 2 deletions

View File

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

View File

@ -59,13 +59,16 @@ export class DeesSpeechbubble extends DeesElement {
} }
.maincontainer { .maincontainer {
will-change: transform;
transition: transform 0.2s;
transform: translateX(0px);
position: relative; position: relative;
transition: all 0.2s; transition: all 0.2s;
margin-left: 0px; margin-left: 0px;
} }
.maincontainer:hover { .maincontainer:hover {
margin-left: 3px; transform: translateX(3px);
} }
.arrow { .arrow {