21 lines
389 B
CSS
21 lines
389 B
CSS
.favicon {
|
|
position: relative;
|
|
top: 5px;
|
|
max-width: 250px;
|
|
max-height: 250px;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.authenticationBox {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
|
|
/* Image */
|
|
background-image: url("../../public//images/auth/cms_home.jpg");
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-attachment: fixed;
|
|
}
|