@umituz/web-design-system 3.1.1 → 3.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -94,14 +94,14 @@ export const MainNavbar = ({
|
|
|
94
94
|
|
|
95
95
|
{/* Desktop Menu */}
|
|
96
96
|
<Show above="lg">
|
|
97
|
-
<div className="flex items-center
|
|
97
|
+
<div className="flex items-center gap-6 lg:gap-8">
|
|
98
98
|
{navItemsMemo.map((item) => {
|
|
99
99
|
const isActive = location.pathname === item.path;
|
|
100
100
|
return (
|
|
101
101
|
<Link
|
|
102
102
|
key={item.path}
|
|
103
103
|
to={item.path}
|
|
104
|
-
className={`font-medium transition-colors transition-theme ${
|
|
104
|
+
className={`font-medium transition-colors transition-theme whitespace-nowrap ${
|
|
105
105
|
isActive ? 'text-primary-light' : 'text-text-secondary hover:text-primary-light'
|
|
106
106
|
}`}
|
|
107
107
|
>
|