update btn contacts
This commit is contained in:
parent
c50ca2f507
commit
1b163ac134
2 changed files with 31 additions and 15 deletions
|
|
@ -1,17 +1,19 @@
|
|||
<section>
|
||||
<div class="header">
|
||||
<div class="headerline">
|
||||
<div class="headline">
|
||||
<div class="title">{{ "contacts.headline" | translate }}</div>
|
||||
<div class="blue-bar"></div>
|
||||
<div class="metrics-txt">
|
||||
{{ "contacts.headlineDescription" | translate }}
|
||||
</div>
|
||||
</div>
|
||||
<img
|
||||
[ngClass]="{ 'd-none': !currentUserId }"
|
||||
(click)="closeUserDetails()"
|
||||
src="./../../../../assets/img/arrow-left.svg"
|
||||
/>
|
||||
<div class="btn-back">
|
||||
<img
|
||||
[ngClass]="{ 'd-none': !currentUserId }"
|
||||
(click)="closeUserDetails()"
|
||||
src="./../../../../assets/img/arrow-left.svg"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@if (currentUserId) { @for (user of checkUserData(currentUserId); track user)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,20 +2,34 @@
|
|||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.btn-back {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 38px;
|
||||
height: 38px;
|
||||
cursor: pointer;
|
||||
img {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
cursor: pointer;
|
||||
&:hover {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
background-color: var(--light-gray);
|
||||
border-radius: 18px;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
filter: brightness(0) saturate(100%) invert(56%) sepia(64%) saturate(570%)
|
||||
hue-rotate(154deg) brightness(92%) contrast(92%);
|
||||
}
|
||||
&:hover {
|
||||
background-color: var(--light-blue);
|
||||
border-radius: 100%;
|
||||
scale: 1.1;
|
||||
img {
|
||||
scale: 1.1;
|
||||
filter: brightness(0) saturate(100%) invert(100%) sepia(0%)
|
||||
saturate(7485%) hue-rotate(325deg) brightness(100%) contrast(104%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.headerline {
|
||||
.headline {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
|
|
|
|||
Loading…
Reference in a new issue