1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-23 14:30:54 +00:00
* API Fixed: `openUp` not working for the `setting-color-box` component.
This commit is contained in:
SirStendec 2020-04-10 16:59:42 -04:00
parent 30b9a15c0d
commit 80acdc9c30
2 changed files with 7 additions and 2 deletions

View file

@ -1,7 +1,7 @@
{ {
"name": "frankerfacez", "name": "frankerfacez",
"author": "Dan Salvato LLC", "author": "Dan Salvato LLC",
"version": "4.19.6", "version": "4.19.7",
"description": "FrankerFaceZ is a Twitch enhancement suite.", "description": "FrankerFaceZ is a Twitch enhancement suite.",
"license": "Apache-2.0", "license": "Apache-2.0",
"scripts": { "scripts": {

View file

@ -22,7 +22,12 @@
<figure v-else-if="color" :style="`background-color: ${color}`" /> <figure v-else-if="color" :style="`background-color: ${color}`" />
<figure v-else class="ffz-i-eyedropper" /> <figure v-else class="ffz-i-eyedropper" />
</button> </button>
<div v-if="open" v-on-clickaway="closePicker" class="tw-absolute tw-z-above tw-right-0"> <div
v-if="open"
v-on-clickaway="closePicker"
:class="{'ffz-bottom-100': openUp}"
class="tw-absolute tw-z-above tw-right-0"
>
<chrome-picker :disable-alpha="! alpha" :value="colors" @input="onPick" /> <chrome-picker :disable-alpha="! alpha" :value="colors" @input="onPick" />
</div> </div>
</div> </div>