2026-03-22 09:09:04 +01:00

17 lines
236 B
Vue

<template>
<div class="cell left-center">
<slot></slot>
</div>
</template>
<script setup lang="ts">
</script>
<style scoped>
.cell {
padding: 0.75rem 1rem;
text-wrap: nowrap;
overflow-y: scroll;
}
</style>