I currently have a situation where I need to place the fourth panel below the third panel specifically.
footerRoot: {
/* textAlign: "center", */
backgroundColor: theme.palette[0],
bottom: 0,
padding: "10px 10px 0px 10px"
}
Despite having multiple screens, the footer only displays at the bottom correctly for three screens. On the other screens, it awkwardly appears in the middle of the page. How can I adjust the code so that the footer consistently stays at the bottom on all screens? Please note that I am looking for a solution without using position: absolute.