Skip to content

Commit f9c62e3

Browse files
committed
replace stray instances of removed bg-opacity utility
1 parent b3a00ff commit f9c62e3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

client/src/app/dashboard/(application)/submit/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ function SubmitForm({ application }: { application: Application }) {
386386

387387
<div className="mt-16 flex justify-center">
388388
<FormSubmitButton
389-
className="py-2 px-4 text-center rounded-sm text-white bg-white bg-opacity-15 hover:bg-green-500 hover:cursor-pointer hover:shadow-[0_0px_50px_0px_rgba(34,197,94,0.8)] transition-all"
389+
className="py-2 px-4 text-center rounded-sm text-white bg-white/15 hover:bg-green-500 hover:cursor-pointer hover:shadow-[0_0px_50px_0px_rgba(34,197,94,0.8)] transition-all"
390390
type="submit"
391391
onMouseEnter={() => setIsFinalSubmitHovering(true)}
392392
onMouseLeave={() => setIsFinalSubmitHovering(false)}

client/src/components/dashboard/form-submit-button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export function FormSubmitButton({ className, ...props }: React.ComponentProps<t
77
return (
88
<Button
99
className={cn(
10-
"py-2 px-4 text-center rounded-sm text-white bg-white bg-opacity-15 hover:bg-green-500 hover:cursor-pointer hover:shadow-[0_0px_50px_0px_rgba(34,197,94,0.8)] transition-all",
10+
"py-2 px-4 text-center rounded-sm text-white bg-white/15 hover:bg-green-500 hover:cursor-pointer hover:shadow-[0_0px_50px_0px_rgba(34,197,94,0.8)] transition-all",
1111
className,
1212
)}
1313
{...props}

client/src/components/dashboard/sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export function Sidebar() {
3636
return (
3737
<Link
3838
href={`/dashboard/${item.link}`}
39-
className="py-1 mt-1 px-2 border-x-2 rounded-lg bg-white bg-opacity-5 border-border transition-colors hover:border-white hover:bg-opacity-15 hover:cursor-pointer duration-300"
39+
className="py-1 mt-1 px-2 border-x-2 rounded-lg bg-white/5 border-border transition-colors hover:border-white hover:bg-white/15 hover:cursor-pointer duration-300"
4040
key={item.id}
4141
onClick={() => setIsOpen(false)}
4242
>

0 commit comments

Comments
 (0)