This commit is contained in:
Mikola
2024-01-26 18:07:10 +03:00
parent fbc011ba91
commit 583e15ba0b
6 changed files with 72 additions and 19 deletions

View File

@ -800,7 +800,7 @@ export const TicketFullScreen = () => {
/>
) : (
<h5 className="fullName nameFullScreen">
{inputsValue.title}
<span>Название задачи:</span>{inputsValue.title}
</h5>
)}
<div className="content__description">
@ -831,12 +831,15 @@ export const TicketFullScreen = () => {
}}
/>
) : (
<p
className="fullDescription fullScreenDescription"
dangerouslySetInnerHTML={{
__html: inputsValue.description
}}
/>
<div className="ticket__description">
<span>Описание<br/>задачи: </span>
<p
className="fullDescription fullScreenDescription"
dangerouslySetInnerHTML={{
__html: inputsValue.description
}}
/>
</div>
)}
</div>
{Boolean(taskFiles.length) && (

View File

@ -2,6 +2,19 @@
background: #f5f5f5;
}
.fullName {
display: flex;
align-items: center;
span {
color: #6F6F6F;
font-weight: 500;
font-size: 12px;
line-height: 17px;
display: flex;
width: 120px;
}
}
.ticket {
border: none;
justify-content: center;
@ -18,6 +31,20 @@
@media (max-width: 880px) {
flex-direction: column !important;
}
&__description {
display: flex;
margin-top: 20px;
span {
display: flex;
width: 120px;
color: #6F6F6F;
font-weight: 500;
font-size: 12px;
line-height: 17px;
}
}
}
.fullScreenWorkers {

View File

@ -742,8 +742,8 @@
.exit {
cursor: pointer;
position: absolute;
top: 10px;
right: 10px;
top: 15px;
right: 20px;
width: 13px;
height: 13px;
display: flex;