mirror of
https://github.com/jorgev259/soc_site-astro.git
synced 2025-06-29 07:57:41 +00:00
Implement register form
This commit is contained in:
parent
adeb3fd3bf
commit
cdcd71cf2a
17 changed files with 526 additions and 99 deletions
|
|
@ -7,8 +7,8 @@ export default function Button(props: PropsWithChildren<{ className?: string; lo
|
|||
return (
|
||||
<button
|
||||
className={clsx(
|
||||
loading ? 'bg-blue-400 cursor-progress' : 'bg-blue-600 hover:bg-blue-700',
|
||||
'py-2 px-3.5 rounded-lg',
|
||||
{ 'cursor-progress': loading },
|
||||
'py-2 px-3.5 rounded-lg bg-blue-600 hover:bg-blue-700 disabled:bg-blue-400',
|
||||
className
|
||||
)}
|
||||
{...restProps}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue