Files
lucent-laravel/front/js/svelte/content/elements/Rich.svelte
T
2023-10-02 23:10:49 +03:00

18 lines
253 B
Svelte

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