@aurelia-mdc-web/layout-grid
Version:
Wrapper for Material Components Web Layout Grid
13 lines (12 loc) • 541 B
HTML
<template class="
mdc-layout-grid__cell
{order ? 'mdc-layout-grid__cell--order-' + order : ''}
{position ? 'mdc-layout-grid__cell--align-' + position : ''}
{span ? 'mdc-layout-grid__cell--span-' + span : ''}
{desktopSpan ? 'mdc-layout-grid__cell--span-' + desktopSpan + '-desktop' : ''}
{tabletSpan ? 'mdc-layout-grid__cell--span-' + tabletSpan + '-tablet' : ''}
{phoneSpan ? 'mdc-layout-grid__cell--span-' + phoneSpan + '-phone' : ''}
{newRow ? 'mdc-layout-grid__cell--new-row' : ''}
">
<slot></slot>
</template>