Currently, I am working with ReactJS and ANTD. My modal has been adjusted with paddings to center-align the text, but now I want to enhance the design. Here is the desired look: https://i.stack.imgur.com/qef7n.png
This is how it appears at the moment: https://i.stack.imgur.com/5QsAv.png
CSS:
modalStyle {
padding: 100px 50px
}
index.js
const styling ={
design:{
background: "#FFFFFF",
width: "400px",
height: "30px",
margin: "40px 50px 40px 0px !important"
}
}
const Modal = props => {
return (
<Modal
className={"modalStyle"}
>
<div style={styling.design}> </div>
</Modal>
)