update code
This commit is contained in:
parent
77d8b3289d
commit
a921536d82
3 changed files with 9 additions and 4 deletions
|
|
@ -126,7 +126,7 @@
|
|||
@if (AssignedDialogId != '') {
|
||||
<div class="dialog" [style.left.px]="dialogX" [style.top.px]="dialogY">
|
||||
<p>
|
||||
{{ firebaseService.getUserDetails(AssignedDialogId, "firstName") }},
|
||||
{{ firebaseService.getUserDetails(AssignedDialogId, "firstName") }}
|
||||
{{ firebaseService.getUserDetails(AssignedDialogId, "lastName") }}
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -71,7 +71,11 @@
|
|||
} @if (AssignedDialogId != '') {
|
||||
<div class="dialog" [style.left.px]="dialogX" [style.top.px]="dialogY">
|
||||
<p>
|
||||
{{ firebaseService.getUserDetails(AssignedDialogId, "firstName") }},
|
||||
{{ firebaseService.getUserDetails(AssignedDialogId, "firstName") }}
|
||||
@if (AssignedDialogId === firebaseService.getCurrentUserId()) {
|
||||
<span>(du)</span> }
|
||||
</p>
|
||||
<p>
|
||||
{{ firebaseService.getUserDetails(AssignedDialogId, "lastName") }}
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -23,14 +23,15 @@ section {
|
|||
|
||||
.dialog {
|
||||
position: fixed;
|
||||
width: min-content;
|
||||
width: fit-content;
|
||||
height: fit-content;
|
||||
padding: 10px 15px;
|
||||
border-radius: 0px 20px 20px 20px;
|
||||
border: 1px solid var(--black);
|
||||
z-index: 2;
|
||||
background-color: var(--white);
|
||||
p {
|
||||
p,
|
||||
span {
|
||||
font-size: 18px;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue