From 23372fa8bf38044734aedf3fa8002a6994afca97 Mon Sep 17 00:00:00 2001 From: tom-leamon Date: Mon, 29 Apr 2024 03:10:57 -0500 Subject: [PATCH] Fix cursor pointer for NavTabs --- package.json | 2 +- src/components/NavSpaces/NavTab.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 4261cc1..0f54f27 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/components/NavSpaces/NavTab.tsx b/src/components/NavSpaces/NavTab.tsx index eb672a1..f1dae2e 100644 --- a/src/components/NavSpaces/NavTab.tsx +++ b/src/components/NavSpaces/NavTab.tsx @@ -91,6 +91,7 @@ const S = { }>` position: relative; display: flex; + cursor: pointer; height: calc(100% - .325rem); padding-top: .125rem; justify-content: center; @@ -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)'}; }