@umituz/web-design-system 2.7.1 → 2.7.2
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
|
@@ -33,7 +33,7 @@ export const Footer = forwardRef<HTMLElement, FooterProps>(
|
|
|
33
33
|
{...props}
|
|
34
34
|
>
|
|
35
35
|
<div className="max-w-7xl mx-auto px-4 py-12">
|
|
36
|
-
<div className="grid md:grid-cols-3 gap-8">
|
|
36
|
+
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
|
37
37
|
{/* Brand */}
|
|
38
38
|
{brand && (
|
|
39
39
|
<div>
|
|
@@ -67,7 +67,7 @@ export const Footer = forwardRef<HTMLElement, FooterProps>(
|
|
|
67
67
|
{social && (
|
|
68
68
|
<div>
|
|
69
69
|
<h4 className="font-semibold text-text-primary mb-3">Connect</h4>
|
|
70
|
-
<div className="flex gap-4">
|
|
70
|
+
<div className="flex flex-col sm:flex-row gap-3 sm:gap-4">
|
|
71
71
|
{social.map((item, index) => (
|
|
72
72
|
<a
|
|
73
73
|
key={index}
|