Files
lucent-laravel/front/js/svelte/content/elements/Rich.svelte
T
2024-10-01 22:31:07 +03:00

19 lines
254 B
Svelte

<script>
export let value;
</script>
<div>
{value}
</div>
<style>
div {
/* max-width: 128px; */
max-height: 24px;
text-overflow: ellipsis;
overflow: hidden;
/* white-space: nowrap; */
}
</style>