feat(ui) - session settings - changed state
This commit is contained in:
parent
d2f168f667
commit
87f76f484d
3 changed files with 3 additions and 3 deletions
|
|
@ -38,7 +38,7 @@ function DashboardModal(props) {
|
|||
return useObserver(() => (
|
||||
<div
|
||||
className="fixed border-r shadow p-4 h-screen"
|
||||
style={{ backgroundColor: '#FAFAFA', zIndex: '999', width: '85%', maxWidth: '1300px' }}
|
||||
style={{ backgroundColor: '#FAFAFA', zIndex: 999, width: '85%', maxWidth: '1300px' }}
|
||||
>
|
||||
<div className="mb-6 flex items-end justify-between">
|
||||
<div>
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ function ModalOverlay({ children }) {
|
|||
let modal = useModal();
|
||||
|
||||
return (
|
||||
<div className="fixed w-full h-screen" style={{ zIndex: '999' }}>
|
||||
<div className="fixed w-full h-screen" style={{ zIndex: 999 }}>
|
||||
<div
|
||||
onClick={() => modal.hideModal()}
|
||||
className={stl.overlay}
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ function getStyles(
|
|||
// because IE will ignore our custom "empty image" drag preview.
|
||||
opacity: isDragging ? 0 : 1,
|
||||
height: isDragging ? 0 : '',
|
||||
zIndex: '99',
|
||||
zIndex: 99,
|
||||
cursor: 'move'
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue