mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-08 01:49:58 +00:00
20 lines
349 B
Vue
20 lines
349 B
Vue
|
<script setup lang="ts">
|
||
|
defineProps<{
|
||
|
increased: boolean
|
||
|
}>()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div overflow-hidden h="1.25rem">
|
||
|
<div
|
||
|
transition="duration-300 transform"
|
||
|
:style="{
|
||
|
transform: increased ? 'translateY(-50%)' : 'translateY(0%)',
|
||
|
}"
|
||
|
>
|
||
|
<slot />
|
||
|
<slot name="next" />
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|