demo user banner

This commit is contained in:
realaravinth
2021-08-09 12:23:06 +05:30
parent 147f563ec8
commit 02b62fb1d0
8 changed files with 35 additions and 3 deletions

View File

@@ -47,14 +47,24 @@ body {
position: relative;
}
.auth__secondary-action__banner {
@mixin auth__secondary-action__banner-base {
display: block;
margin: auto;
text-align: center;
width: 80%;
}
.auth__secondary-action__banner {
@include auth__secondary-action__banner-base;
margin: 20px auto auto auto;
}
.auth__demo-user__banner {
@include auth__secondary-action__banner-base;
margin: 5px auto auto auto;
font-size: 0.7rem;
}
.auth__secondary-action__link {
text-decoration: none;
color: $blue-link;

View File

@@ -42,3 +42,7 @@ body {
.auth__logo {
width: 120px;
}
.auth__demo-user__cred{
display: block;
}