I have a website to build and I want my background image to appear only on the homepage, Calculator button, and the map button. I have put the following code in the app.css but it appears in all the pages I want to render. So, how can I make it appear only on these three pages? I have the following code:
body {
background-image: url('./Assets/background.jpeg');
background-repeat:'no-repeat';
background-position:'center';
background-size: 'cover';
height: '100vh';
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}
body::-webkit-scrollbar {
width: 10px;
background-color:#ee7600;
}