I have an Angular 2 app. In this app i have few components. I want to add a background image only to login component. How do i do that?
body{
background-image: url('https://s.zkcdn.net/Advertisers/d36ea4926dfa4978ab2556ba7688692c.png') ;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
height:100%;
}
I have this style for the login component. but it's not covering the entire windows. it's covering only the form section.