Authentication flow change - Remove requirement for user to enter username - Use Passkey discoverability instead.

This commit is contained in:
Cameron Redmore 2025-04-26 08:32:54 +01:00
parent 0d277e3035
commit 7564937faa
8 changed files with 120 additions and 75 deletions

View file

@ -2,6 +2,23 @@
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');
html, body {
html,
body {
font-family: 'Exo 2', sans-serif;
}
.bg-theme {
background: linear-gradient(to top left,
#fdc730,
#ea2963,
#bd288a 50%,
#6e43ac,
#4763bf,
#16a3e8) !important;
}
.bg-blurred {
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(10px);
}