Skip to content

Commit 36028c5

Browse files
committed
fix: add back button cursor pointer
Reverts the Tailwind v4 change to remove the default button cursor pointer. As discussed on the standup, we'll undo this change for the current release to avoid regression (especially on components that have no hover effect), then possibly undo this later and replace with targeted fixes for elements where we have no hover or focus indicator. Fixes podman-desktop#11436. Signed-off-by: Tim deBoer <[email protected]>
1 parent 6ef6bcd commit 36028c5

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

packages/renderer/src/app.css

+7
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,10 @@ a {
1313
--spacing-leftnavbar: 48px;
1414
--spacing-leftsidebar: 170px;
1515
}
16+
17+
@layer base {
18+
button:not(:disabled),
19+
[role='button']:not(:disabled) {
20+
cursor: pointer;
21+
}
22+
}

0 commit comments

Comments
 (0)