|
|
|
@ -54,9 +54,7 @@ |
|
|
|
const newValue = n => Array(n).fill("") |
|
|
|
</script> |
|
|
|
|
|
|
|
<h3>Styles</h3> |
|
|
|
|
|
|
|
<h4>Display</h4> |
|
|
|
<h3>Layout</h3> |
|
|
|
<div class="layout-pos"> |
|
|
|
{#each Object.entries(display) as [key, [name, meta, size]] (component._id + key)} |
|
|
|
<div class="grid"> |
|
|
|
@ -87,7 +85,7 @@ |
|
|
|
{/each} |
|
|
|
</div> --> |
|
|
|
|
|
|
|
<h4>Spacing</h4> |
|
|
|
<h3>Spacing</h3> |
|
|
|
<div class="layout-spacing"> |
|
|
|
{#each Object.entries(spacing) as [key, [name, meta, size]] (component._id + key)} |
|
|
|
<div class="grid"> |
|
|
|
@ -102,7 +100,7 @@ |
|
|
|
{/each} |
|
|
|
</div> |
|
|
|
|
|
|
|
<h4>Size</h4> |
|
|
|
<h3>Size</h3> |
|
|
|
<div class="layout-layer"> |
|
|
|
{#each Object.entries(size) as [key, [name, meta, size]] (component._id + key)} |
|
|
|
<div class="grid"> |
|
|
|
@ -117,7 +115,7 @@ |
|
|
|
{/each} |
|
|
|
</div> |
|
|
|
|
|
|
|
<h4>Z-Index</h4> |
|
|
|
<h3>Order</h3> |
|
|
|
<div class="layout-layer"> |
|
|
|
{#each Object.entries(zindex) as [key, [name, meta, size]] (component._id + key)} |
|
|
|
<div class="grid"> |
|
|
|
@ -135,19 +133,11 @@ |
|
|
|
h3 { |
|
|
|
text-transform: uppercase; |
|
|
|
font-size: 12px; |
|
|
|
font-weight: 700; |
|
|
|
color: #000333; |
|
|
|
opacity: 0.6; |
|
|
|
margin-bottom: 10px; |
|
|
|
} |
|
|
|
|
|
|
|
h4 { |
|
|
|
text-transform: uppercase; |
|
|
|
font-size: 10px; |
|
|
|
font-weight: 700; |
|
|
|
font-weight: 600; |
|
|
|
color: #000333; |
|
|
|
opacity: 0.4; |
|
|
|
margin-bottom: 15px; |
|
|
|
margin-bottom: 10px; |
|
|
|
letter-spacing: 1px; |
|
|
|
} |
|
|
|
|
|
|
|
h5 { |
|
|
|
@ -168,6 +158,6 @@ |
|
|
|
} |
|
|
|
|
|
|
|
.grid { |
|
|
|
grid-template-columns: 70px 1fr; |
|
|
|
grid-template-columns: 70px 2fr; |
|
|
|
} |
|
|
|
</style> |
|
|
|
|