fixes
This commit is contained in:
@ -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) && (
|
||||
|
@ -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 {
|
||||
|
@ -742,8 +742,8 @@
|
||||
.exit {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
top: 15px;
|
||||
right: 20px;
|
||||
width: 13px;
|
||||
height: 13px;
|
||||
display: flex;
|
||||
|
Reference in New Issue
Block a user