Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: cursor as pointer on tab #6522

Open
wants to merge 23 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
a5e1bd5
fix: cursor as pointer on tab
kobenguyent Sep 18, 2023
7c2b515
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Sep 18, 2023
9a47522
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Sep 20, 2023
d5e8ea2
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Sep 25, 2023
36368d0
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Sep 25, 2023
4d5f772
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Sep 26, 2023
444a8d2
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Oct 1, 2023
9666d63
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Oct 3, 2023
e539447
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Oct 3, 2023
d7ba7c8
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Oct 3, 2023
eb751f0
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Oct 4, 2023
4e93709
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Oct 5, 2023
337bc33
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Oct 10, 2023
d5c1113
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Oct 31, 2023
d3fbd54
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Nov 15, 2023
1156068
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Nov 19, 2023
79bf0fa
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Nov 19, 2023
a771aad
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Nov 21, 2023
fa7405b
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Dec 7, 2023
74f2051
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Dec 15, 2023
d2ae41e
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Jan 17, 2024
01221ea
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Feb 11, 2024
49a5b6e
Merge branch 'develop' into fix-cursor-on-tab
kobenguyent Apr 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/insomnia/src/ui/components/base/tabs.tsx
Expand Up @@ -11,6 +11,7 @@ interface StyledTabProps {

const StyledTab = styled.div<StyledTabProps>(({ isNested, isSelected }) => ({
display: 'flex',
cursor: 'pointer',
alignItems: 'center',
justifyContent: 'center',
whiteSpace: 'nowrap',
Expand Down