Working in paginations
This commit is contained in:
@ -1012,7 +1012,7 @@ export const ModalTiсket = ({
|
||||
>
|
||||
<span>
|
||||
{typeof taskPriority === "number"
|
||||
? priority[taskPriority]
|
||||
? `Приоритет: ${priority[taskPriority]}`
|
||||
: "Выберите приоритет"}
|
||||
</span>
|
||||
<img
|
||||
|
@ -23,9 +23,14 @@
|
||||
max-height: 700px;
|
||||
// overflow-y: auto;
|
||||
|
||||
@media (max-width: 990px) {
|
||||
width: 96%;
|
||||
}
|
||||
|
||||
@media (max-width: 880px) {
|
||||
max-height: none;
|
||||
overflow-y: inherit;
|
||||
width: 96%;
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar {
|
||||
@ -576,6 +581,14 @@
|
||||
//&:focus-within {
|
||||
// border: 1px solid #0000004d;
|
||||
//}
|
||||
|
||||
@media (max-width: 880px) {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 880px) {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@ -1089,6 +1102,10 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 880px) {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
&-priority {
|
||||
|
@ -1206,7 +1206,7 @@ export const TicketFullScreen = () => {
|
||||
>
|
||||
<span>
|
||||
{typeof taskPriority === "number"
|
||||
? priority[taskPriority]
|
||||
? `Приоритет: ${priority[taskPriority]}`
|
||||
: "Выберите приоритет"}
|
||||
</span>
|
||||
<img
|
||||
|
@ -612,7 +612,7 @@ export const TrackerModal = ({
|
||||
>
|
||||
{selectedPriority
|
||||
? `Приоритет: ${selectedPriority.name}`
|
||||
: "Выберити приоритет"}
|
||||
: "Выберите приоритет"}
|
||||
<img
|
||||
className={selectPriority ? "arrow arrow--open" : "arrow"}
|
||||
src={arrowDown}
|
||||
|
Reference in New Issue
Block a user