Skip to content
Snippets Groups Projects
Commit a924b5b5 authored by Philipp Sautner's avatar Philipp Sautner
Browse files

Adds scaling text

parent 0c703b27
No related merge requests found
......@@ -49,12 +49,14 @@
<div *ngIf="!isHtmlNickname(elem.groupName)">[{{elem.groupName}}]</div>
</div>
<p class="flex-grow-1 break-word" [class.text-center]="!elem.groupName">
<span *ngIf="isHtmlNickname(elem.name)"
<span *ngIf="isHtmlNickname(elem.name)"
[innerHTML]="parseNickname(elem.name)"></span>
<span *ngIf="!isHtmlNickname(elem.name)">{{elem.name}}</span>
</p>
</div>
<div *ngIf="elem.name === attendeeService.lastJoined()?.name" class="recently-joined"></div>
<div *ngIf="elem.name === attendeeService.lastJoined()?.name" class="recently-joined">
Text is animated not the button
</div>
</div>
</div>
......
......@@ -11,7 +11,7 @@
}
.recently-joined {
animation: 3s alternate infinite enlargen;
animation: 2s alternate infinite enlargen;
}
......@@ -19,12 +19,8 @@
from {
font-size: 100%;
}
75% {
font-size: 200%;
}
to {
font-size: 300%;
font-size: 130%;
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment