fix: Add missing close button if bubble is hidden (#1435)
This commit is contained in:
@@ -34,6 +34,14 @@ body {
|
||||
}
|
||||
}
|
||||
|
||||
.is-bubble-hidden {
|
||||
.actions {
|
||||
.close-button {
|
||||
display: block !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cursor-pointer {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
@@ -2,7 +2,11 @@
|
||||
<div
|
||||
id="app"
|
||||
class="woot-widget-wrap"
|
||||
:class="{ 'is-mobile': isMobile, 'is-widget-right': !isLeftAligned }"
|
||||
:class="{
|
||||
'is-mobile': isMobile,
|
||||
'is-widget-right': !isLeftAligned,
|
||||
'is-bubble-hidden': hideMessageBubble,
|
||||
}"
|
||||
>
|
||||
<home
|
||||
v-if="!showUnreadView"
|
||||
|
||||
Reference in New Issue
Block a user