export const loginBackground = {
container: {
height: "100%"
},
};
Assign the background image widget class loginBackground
Hi Umar,
you have to use background properties in CSS. Simple Example is below.
<div class="background">
put your content inside this div using any tag
</div>
add below CSS in styleSheet.
.background {
background-image: url("img.jpg");
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}