Commit ·
07cf1c8
1
Parent(s): b98ffb6
bugfix(#132): fixed drag/move window issue
Browse files
Extension/src/pages/Content/modules/DraggablePanel.jsx
CHANGED
|
@@ -61,6 +61,8 @@ class DraggablePanel extends React.Component {
|
|
| 61 |
cursor: 'move',
|
| 62 |
right: 0, // Add this property
|
| 63 |
bottom: 0, // Add this property
|
|
|
|
|
|
|
| 64 |
}}
|
| 65 |
>
|
| 66 |
<Panel />
|
|
|
|
| 61 |
cursor: 'move',
|
| 62 |
right: 0, // Add this property
|
| 63 |
bottom: 0, // Add this property
|
| 64 |
+
width: '400px',
|
| 65 |
+
height: '350px'
|
| 66 |
}}
|
| 67 |
>
|
| 68 |
<Panel />
|