1
0
Fork 0
muzika-gromche/Frontend/src/components/timeline/markers/HeaderMarkers.vue

19 lines
365 B
Vue

<script setup lang="ts">
import type { TimelineMarkerData } from '@/lib/Timeline';
const {
timelineMarker,
} = defineProps<{
timelineMarker: TimelineMarkerData,
}>();
const left = '15%';
</script>
<template>
<div class="tw:absolute tw:w-px tw:h-full" :style="{
left,
backgroundColor: timelineMarker.color,
}" />
</template>
<style scoped></style>