1
0
Fork 0
mirror of synced 2024-09-09 22:16:26 +12:00
budibase/packages/bbui/src/Table/BoldRenderer.svelte

16 lines
240 B
Svelte
Raw Normal View History

2021-12-22 08:08:09 +13:00
<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);
2021-12-22 08:08:09 +13:00
}
</style>