added drawer content div

This commit is contained in:
SrGooglo 2023-10-12 21:33:06 +00:00
parent 9145a3419c
commit 6963bd10e1
2 changed files with 15 additions and 1 deletions

View File

@ -378,7 +378,9 @@ export default class DraggableDrawer extends Component {
className="draggable-drawer_body_background"
/>
{this.props.children}
<div className="draggable-drawer_content">
{this.props.children}
</div>
</div>
</div>
)

View File

@ -112,6 +112,18 @@
}
}
.draggable-drawer_content {
position: relative;
z-index: 100;
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
}
&::after {
content: "";