made changes to the auth layout

This commit was merged in pull request #5.
This commit is contained in:
2023-10-20 06:45:34 -07:00
parent 5d4cbc7a1c
commit 39fe9eaaa2
5 changed files with 121 additions and 20 deletions
@@ -10,6 +10,8 @@
.authenticationBox {
width: 100%;
min-height: 100vh;
position: relative;
padding: 1rem;
/* Image */
background-image: url("../../public//images/auth/cms_home.jpg");
@@ -18,3 +20,19 @@
background-position: center center;
background-attachment: fixed;
}
.authenticationBox::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
}
@media (min-width: 600px) {
.authenticationBox {
padding: 1rem;
}
}