This commit is contained in:
Mikola
2023-10-25 16:33:08 +03:00
parent 33b70c7fbd
commit fc9d18a380
5 changed files with 320 additions and 12 deletions

View File

@ -386,7 +386,7 @@
.persons__list {
position: absolute;
z-index: 20;
z-index: 8;
display: flex;
flex-direction: column;
background: linear-gradient(180deg, #ffffff 0%, #ebebeb 100%);
@ -784,7 +784,7 @@
&__list {
position: absolute;
background: #f8f9fa;
z-index: 20;
z-index: 8;
border-radius: 8px;
padding: 20px 10px 10px;
top: 30px;
@ -808,6 +808,7 @@
margin-top: 8px;
.tagItem {
position: relative;
display: flex;
flex-direction: column;
padding: 5px;
@ -835,6 +836,23 @@
border-radius: 50px;
}
}
&__images {
position: absolute;
right: 5px;
top: 3px;
display: flex;
column-gap: 3px;
img {
cursor: pointer;
}
.delete {
width: 14px;
height: 14px;
}
}
}
}
@ -999,7 +1017,6 @@
&__item {
width: 328px;
max-height: 250px;
padding: 16px;
position: relative;
box-shadow: 0px 3px 2px -2px rgba(0, 0, 0, 0.06),
@ -1147,6 +1164,21 @@
height: 25px;
}
}
&__tags {
display: flex;
flex-wrap: wrap;
column-gap: 6px;
row-gap: 3px;
margin: 5px 0 10px;
.tagItem {
padding: 3px 10px;
border-radius: 10px;
color: white;
font-size: 12px;
}
}
}
.openItems {