I have implemented a collapsible sidebar. However, the content inside the sidebar is automatically adding padding values of 16px on the top, right, bottom, and left. I want to remove this automatic padding.
render() {
return (
<div className="common-coll-bar">
<Collapse >
<Panel header="Present Staffs" style={customPanelStyle}>
<p style={{ height: 550, color: '#131D43', background: '#607B7E', padding: 0 , margin: 0 }}> {text}</p>
</Panel>
</Collapse>
</div>
);
}
Could anyone provide assistance with this issue?