17 lines
236 B
Vue
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> |