web/skeleton: don't render if hidden

This commit is contained in:
dumbmoron
2024-07-22 10:11:23 +00:00
committed by wukko
parent 705fac16a6
commit c03337fed9

View File

@ -10,16 +10,17 @@
$: style = [
width && `width: ${width}`,
height && `height: ${height}`,
hidden && `display: none`
height && `height: ${height}`
].filter(a => a).join(';');
</script>
{#if hidden !== true}
<div
class="skeleton {_class}"
{style}
{...$$restProps}
></div>
{/if}
<style>
.skeleton {