mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-08-07 23:00:54 +00:00
* Added: Support for Twitch's replies and threads system. The experiment is currently disabled, but if it returns we want to support it. * Added: Option to automatically skip channel trailers. * Fixed: Incorrect appearance of aspect-ratio controlled elements, due to Twitch removing their aspect ratio CSS. * Fixed: Incorrect color applied to text buttons with a custom accent color set. * API Added: `chat:get-tab-commands` event for adding custom chat commands to tab-completion. * API Added: `reply` icon.
12 lines
No EOL
276 B
Vue
12 lines
No EOL
276 B
Vue
<template functional>
|
|
<div
|
|
:class="`ffz-aspect--align-${props.align||'top'}`"
|
|
class="ffz-aspect"
|
|
>
|
|
<div
|
|
:style="{paddingTop: (props.padding ? props.padding : (100 * (1 / (props.ratio || 1)))) + '%'}"
|
|
class="ffz-aspect__spacer"
|
|
/>
|
|
<slot />
|
|
</div>
|
|
</template> |