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 apps/frontend/app/components/runs/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function SidebarMenuButton({

return (
<button
className="w-full rounded-md group hover:bg-slate-100 flex justify-between items-center p-2 cursor-pointer"
className="w-full rounded-md group hover:bg-slate-100 flex justify-between items-center p-2"
onClick={toggle}
>
<div className="flex items-center gap-2 w-full">
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend/app/routes/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export default function Login() {

<button
type="submit"
className="w-full bg-indigo-700 hover:bg-indigo-600 active:bg-indigo-800 text-white font-semibold text-sm rounded-md py-2.5 transition cursor-pointer mt-2"
className="w-full bg-indigo-700 hover:bg-indigo-600 active:bg-indigo-800 text-white font-semibold text-sm rounded-md py-2.5 transition mt-2"
>
Log in
</button>
Expand Down
7 changes: 7 additions & 0 deletions apps/frontend/app/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@
--muted-foreground: 240 5% 64.9%;
--border: 240 3.7% 15.9%;
}

button:not(:disabled) {
@apply cursor-pointer;
}
button:disabled {
@apply cursor-not-allowed;
}
}

@theme {
Expand Down
Loading