1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-08 07:10:54 +00:00
* Fixed: Words being highlighted as mentions incorrectly when they start with the user's name.
* API Changed: New `<react-link>` and `<aspect>` global Vue components.
This commit is contained in:
SirStendec 2019-06-05 20:29:33 -04:00
parent 8582626269
commit 4e0539103a
5 changed files with 38 additions and 3 deletions

View file

@ -0,0 +1,12 @@
<template functional>
<div
:class="`tw-aspect--align-${props.align||'top'}`"
class="tw-aspect"
>
<div
:style="{paddingBottom: (100 * (1 / (props.ratio || 1))) + '%'}"
class="tw-aspect__spacer"
/>
<slot />
</div>
</template>