Saving my work and trying something a little different. Using a number as the id instead of the email address. I feel like this will also cause issues.

This commit is contained in:
Scott Idem
2024-03-13 18:06:22 -04:00
parent 3c30664b2b
commit 3f664eb5c0
7 changed files with 613 additions and 94 deletions

View File

@@ -174,4 +174,31 @@ input:required {
position: relative;
/* top: 0em; */
left: .25em;
}
}
/* Make the group a flex row by default */
/* div.btn-group { */
/* display: flex; */
/* gap: 0; */
/* flex-direction: row; */
/* justify-content: space-around; */
/* align-items: center; */
/* margin: 0;
padding: 0; */
/* } */
/* Make all button elements except for the the first button element not rounded on the left. */
/* Make all button elements except for the fhe last button element not rounded on the right. */
/* These helps with the Skeleton (Tailwind?) button group element. */
.btn-group button {
border-radius: 0;
border: none;
}
/* div.btn-group button:first-child {
border-top-left-radius: .25rem;
border-bottom-left-radius: .25rem;
}
div.btn-group button:last-child {
border-top-right-radius: .25rem;
border-bottom-right-radius: .25rem;
} */