feat: add demo account button on onboarding

This commit is contained in:
Ahmed Bouhuolia
2024-08-20 22:01:36 +02:00
parent 3f23038227
commit 3200d65d90
6 changed files with 73 additions and 5 deletions

View File

@@ -0,0 +1,22 @@
.demoButton {
width: 100%;
margin-bottom: 2rem;
background: transparent;
color: rgba(255, 255, 255, 0.75);
border: 1px solid rgb(255, 255, 255, 0.3);
padding: 10px;
font-size: 13px;
font-weight: 500;
border-radius: 5px;
cursor: pointer;
transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
&:hover {
color: rgba(255, 255, 255, 0.95);
border: 1px solid rgb(255, 255, 255, 0.6);
}
}
.demoButtonLabel{
color: rgba(255, 255, 255, 0.75);
font-size: 13px;
}