OpenSlides/client/src/app/shared/components/grid-layout/grid-layout.component.html
GabrielMeyer 39d891f851 Adds a new view with tiles to the motion-list
- New components 'Tile' and 'GridLayout'
- Adds a grid-layout to the view
- The grid-layout can have an optional title section
2019-05-27 16:17:23 +02:00

16 lines
264 B
HTML

<div
*ngIf="title"
class="heading-container"
[ngClass]="{'no-space': noSpace}"
>
<h3>{{ title }}</h3>
<mat-divider></mat-divider>
</div>
<div
class="os-grid"
[ngClass]="{'no-space': noSpace}"
>
<ng-content></ng-content>
</div>