forked from profectus/Profectus
Fix mainDisplay not respecting classes and styles props
This commit is contained in:
parent
d9dac42837
commit
ce895ed0a0
1 changed files with 2 additions and 1 deletions
|
@ -2,7 +2,8 @@
|
|||
<Sticky>
|
||||
<div
|
||||
class="main-display-container"
|
||||
:style="{ height: `${(effectRef?.$el.clientHeight ?? 0) + 50}px` }"
|
||||
:class="classes ?? {}"
|
||||
:style="[{ height: `${(effectRef?.$el.clientHeight ?? 0) + 50}px` }, style ?? {}]"
|
||||
>
|
||||
<div class="main-display">
|
||||
<span v-if="showPrefix">You have </span>
|
||||
|
|
Loading…
Reference in a new issue