Skip to content

Commit

Permalink
Fix cursor pointer for NavTabs
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-leamon committed Apr 29, 2024
1 parent a44edfa commit 23372fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"version": "1.0.115",
"version": "1.0.116",
"description": "Formation is a comprehensive component library powered by React, Styled Components, and CSS variables for creating apps and websites that demand responsive, unified cross-platform experiences.",
"resolutions": {
"string-width": "^4",
Expand Down
2 changes: 1 addition & 1 deletion src/components/NavSpaces/NavTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ const S = {
}>`
position: relative;
display: flex;
cursor: pointer;
height: calc(100% - .325rem);
padding-top: .125rem;
justify-content: center;
Expand All @@ -99,7 +100,6 @@ const S = {
flex-wrap: ${props => props.vertical ? 'wrap' : 'nowrap'};
gap: ${props => props.vertical ? '0' : '.25rem'};
margin-bottom: ${props => props.vertical ? '0' : '-.125rem'};
* {
color: ${props => props.active ? 'var(--F_Font_Color)' : 'var(--F_Font_Color_Disabled)'};
}
Expand Down

0 comments on commit 23372fa

Please sign in to comment.