fix(core): update
This commit is contained in:
parent
e8cc4c7c90
commit
ed1c18b8ac
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@designestate/dees-catalog',
|
||||
version: '1.0.85',
|
||||
version: '1.0.86',
|
||||
description: 'website for lossless.com'
|
||||
}
|
||||
|
@ -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`
|
||||
<div class="container" @click=${this.handleClick}>
|
||||
<div class="maincontainer" @click=${this.handleClick}>
|
||||
<div class="arrow"></div>
|
||||
<div class="maincontainer"><span class="wave">👋</span> Hey! We are consulting.</div>
|
||||
<div class="speechbubble"><span class="wave">👋</span> Hey! We are consulting.</div>
|
||||
</div>
|
||||
`;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user