1
0
Fork 0
mirror of synced 2024-08-05 21:28:19 +12:00
budibase/packages/bbui/src/Table/BoldRenderer.svelte

16 lines
240 B
Svelte

<script>
export let value
</script>
<div class="bold">{value}</div>
<style>
.bold {
font-weight: bold;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: var(--max-cell-width);
}
</style>