Skip to content
Open
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/components/Sidebar/SidebarContents/SidebarContents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export function SidebarContents({
<li key={item.name}>
<button
onClick={toggleAppendix}
className="w-full flex items-center justify-between px-4 py-2 rounded-lg text-neutral-300 hover:bg-neutral-800 hover:text-white transition-colors"
className="w-full flex items-center justify-between px-4 py-2 rounded-lg text-neutral-300 hover:bg-neutral-800 hover:text-white transition-colors cursor-pointer"
>
<span>{item.name}</span>
<IoChevronDown
Expand Down
2 changes: 1 addition & 1 deletion src/components/TestCaseAccordion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function TestCaseAccordion({
{!caseResults || caseResults.length === 0 ? (
<button
onClick={onRunTests}
className="px-4 py-2 bg-blue-800 text-white text-sm rounded hover:bg-blue-700 transition-colors shrink-0 flex items-center gap-2 w-[120px] h-[38px] justify-center"
className="px-4 py-2 bg-blue-800 text-white text-sm rounded hover:bg-blue-700 transition-colors shrink-0 flex items-center gap-2 w-[120px] h-[38px] justify-center cursor-pointer"
>
Run Test
<span className="text-base">▶</span>
Expand Down
2 changes: 1 addition & 1 deletion src/components/UserInputTestInterface.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export function UserInputTestInterface({
<button
onClick={runTests}
disabled={inputValue.length === 0}
className="px-4 py-2 bg-blue-800 text-white text-sm rounded hover:bg-blue-700 transition-colors disabled:bg-neutral-700 disabled:cursor-not-allowed flex items-center gap-2"
className="px-4 py-2 bg-blue-800 text-white text-sm rounded hover:bg-blue-700 transition-colors disabled:bg-neutral-700 disabled:cursor-not-allowed flex items-center gap-2 cursor-pointer"
>
Run Test
<span className="text-base">▶</span>
Expand Down