Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/dashboard/page-client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ function DashboardTabButton({
"text-nowrap rounded-full px-4 py-2",
currentTab === value
? "bg-accent text-white"
: "hover:bg-accent/25 cursor-pointer transition",
: "hover:bg-accent/25 cursor-pointer",
!isMobile && "w-full text-left",
)}
onClick={() => setTab(value)}
Expand Down
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import LinkButton from "@/features/button/components/link";

export default function Home() {
return (
<main className="min-h-screen transition-colors duration-300">
<main className="min-h-screen">
{/* Hero Section */}
<section className="relative overflow-hidden px-4 pb-20 pt-32 sm:px-6 lg:px-8">
<div className="mx-auto max-w-7xl text-center">
Expand Down
3 changes: 1 addition & 2 deletions src/components/text-input-field.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ export default function TextInputField(props: TextInputFieldProps) {
isPassword && "pr-10",

// borders and colors
"transition-colors",
error
? "border-error text-error" // error
: "border-foreground", // default
Expand All @@ -80,7 +79,7 @@ export default function TextInputField(props: TextInputFieldProps) {
htmlFor={id}
className={cn(
"absolute origin-[0_0] cursor-text px-1",
"transition-all duration-200 ease-in-out",
"transition-[top,scale] duration-200 ease-in-out",
outlined ? "left-4" : "left-1",
classname,

Expand Down
2 changes: 1 addition & 1 deletion src/features/toast/base.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default function BaseToast({
}}
className={cn(
"col-start-3 row-span-2 flex h-6 w-6 items-center justify-center rounded-full",
"opacity-0 transition-all",
"opacity-0 transition-opacity duration-200 ease-in-out",
"focus:opacity-100 group-hover:opacity-100",
"hover:bg-black/20 focus:outline-none focus:ring-2 focus:ring-white/50",
)}
Expand Down
Loading