mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-24 17:31:54 +00:00
Fix mainDisplay not respecting classes and styles props
This commit is contained in:
parent
37622b65c2
commit
345ad8dfac
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