fix switch cohort window getting clipped when zoomed in for accessibility (#2430)
This commit is contained in:
Родитель
96b35743e4
Коммит
e12a9f764e
|
@ -107,8 +107,20 @@ export class ShiftCohort extends React.Component<
|
|||
},
|
||||
isBlocking: true
|
||||
}}
|
||||
minWidth={740}
|
||||
maxWidth={1000}
|
||||
styles={{
|
||||
main: {
|
||||
selectors: {
|
||||
"@media (max-width: 740px)": {
|
||||
maxWidth: "740px",
|
||||
minWidth: "100px"
|
||||
},
|
||||
"@media (min-width: 740px)": {
|
||||
maxWidth: "1000px",
|
||||
minWidth: "740px"
|
||||
}
|
||||
}
|
||||
}
|
||||
}}
|
||||
>
|
||||
<Dropdown
|
||||
placeholder={localizationBase.selectCohort}
|
||||
|
|
Загрузка…
Ссылка в новой задаче