<div class="placeholder placeholder--gray">Placeholder</div>
//- Render placeholder
.placeholder(
class=classNames(
`placeholder--${variant || 'default'}`
)
)&attributes(attr) #{text}
{
"text": "Placeholder",
"variant": "gray"
}
.placeholder {
border: 1px dashed $color-gray;
padding: 20% 0;
text-align: center;
}
.placeholder--flat {
padding: 10% 0;
}
.placeholder--dark {
background: $color-dark;
border: 0;
color: #fff;
}
.placeholder--gray {
background: $color-gray;
border: 0;
}
There are no notes for this item.