I need help adjusting the spacing between text and a button on my webpage. Currently, they are too close to each other with no space in between. How can I add some space without causing the button to move to the next line?
const useStyles = makeStyles((theme) => ({
heading: {
fontSize: "25px"
},
popup: {
marginLeft: "20px"
}
}));
export default function App() {
const classes = useStyles();
return (
<div className="App">
<div className={classes.heading}>
Instructions
{/* <div className={classes.popup}> */}
<Popup />
{/* </div> */}
</div>
</div>
);
}
Codesandbox: https://codesandbox.io/s/bold-hooks-yhik1?file=/src/App.js:0-638