Files
lucent-laravel/front/js/svelte/content/elements/Rich.svelte
T

18 lines
253 B
Svelte
Raw Normal View History

2023-10-02 23:10:49 +03:00
<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>