(demo) add themes handling

We now can switch theme directly inside the demo app.
This commit is contained in:
Nathan Vasse
2023-09-26 11:39:28 +02:00
committed by NathanVss
parent bac9e3b802
commit 8b1dbd2f25
5 changed files with 155 additions and 67 deletions

View File

@@ -8,11 +8,11 @@
font-size: 16px;
line-height: 24px;
font-weight: 400;
background-color: #242424;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 3rem;
background-color: var(--c--theme--colors--greyscale-000);
}
@@ -20,9 +20,11 @@
display: flex;
flex-direction: column;
align-items: center;
padding: 2rem;
background-color: var(--c--theme--colors--greyscale-100);
border-radius: 1rem;
h1, h3 {
color: white;
margin-bottom: 40px;
}
}
}