get create client working

This commit is contained in:
Casey 2025-11-25 06:22:44 -06:00
parent 4a3576168a
commit cb33d0c3b3
11 changed files with 1179 additions and 336 deletions

View file

@ -55,3 +55,19 @@
justify-content: flex-end;
gap: 5px;
}
/* Fix ToggleSwitch z-index so slider is visible but input receives clicks */
.p-toggleswitch {
position: relative;
}
.p-toggleswitch-slider {
position: relative;
z-index: 0;
pointer-events: none;
}
.p-toggleswitch-input {
position: absolute;
z-index: 1;
}