(demo) add onboarding modal

On first visit, display an onboarding modal to explain the purpose of
this demo.
This commit is contained in:
jbpenrath
2024-02-15 11:12:27 +01:00
committed by Jean-Baptiste PENRATH
parent 86138df8fe
commit bacd9446b4
6 changed files with 115 additions and 1 deletions

View File

@@ -15,6 +15,11 @@ p {
margin: 0;
}
a {
color: var(--c--theme--colors--greyscale-800);
text-decoration: underline;
}
// App
html {
@@ -114,3 +119,34 @@ html[data-theme="blueney"] {
}
}
}
// Onboarding Modal
.onboarding__title {
margin-top: 0;
}
.onboarding__title-icon {
font-size: 2rem;
margin: 0;
}
.onboarding__content {
max-width: 680px;
line-height: 1.5rem;
text-align: left;
& p {
margin-bottom: 1rem;
}
}
.onboarding__footer {
display: flex;
justify-content: space-between;
flex-direction: row-reverse;
align-items: center;
gap: 1rem;
& > .c__button:first-child {
min-width: 200px;
justify-content: center;
}
}