next-ucap-messenger/projects/ucap-webmessenger-app/src/app/layouts/messenger/components/intro.component.html

29 lines
856 B
HTML
Raw Normal View History

<div fxFlex fxLayout="column" fxLayoutAlign="center center">
2020-01-08 01:24:35 +00:00
<div class="empty-logo" fxLayoutAlign="center center" fxLayout="column">
<div
class="big-circle app-logo border-accent-color"
fxLayoutAlign="center center"
[@animate]="{ value: '*', params: { delay: '50ms', scale: '0.2' } }"
>
<!--<mat-icon class="s-64 s-md-128 mat-accent">chat</mat-icon>-->
<img src="assets/images/logo/bg_logo_w120.png" />
</div>
2020-01-08 01:24:35 +00:00
<span
class="app-title text-accent-darkest "
[@animate]="{ value: '*', params: { delay: '100ms', y: '25px' } }"
>
{{ getTitle() }}
</span>
2020-01-08 01:24:35 +00:00
<span
fxHide
fxShow.gt-md
class="app-message secondary-text"
[@animate]="{ value: '*', params: { delay: '200ms', y: '50px' } }"
>
Select a contact to start a chat!
</span>
</div>
</div>