style: onboarding screens (#1539)
* fix: onboarding screen styling * chore: minor styling fixes * chore: disable buttons if form is invalid
This commit is contained in:
parent
55a1291b1d
commit
0feab162ff
11 changed files with 38 additions and 28 deletions
|
|
@ -96,7 +96,7 @@ export const applyTheme = (palette: string, isDarkPalette: boolean) => {
|
|||
?.style.setProperty(`--color-sidebar-text-${shade}`, sidebarTextRgbValues);
|
||||
|
||||
if (i >= 100 && i <= 400) {
|
||||
const borderShade = (shade + 100) as keyof TShades;
|
||||
const borderShade = i === 100 ? 70 : i === 200 ? 80 : i === 300 ? 90 : 100;
|
||||
|
||||
document
|
||||
.querySelector<HTMLElement>("[data-theme='custom']")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue