|
|
@@ -19,11 +19,11 @@ const getUrlparams = (url: string) => {
|
|
|
|
|
|
const FooterMenuItem = ({ item }: { item: ThemeOptions }) => {
|
|
|
return (
|
|
|
- <li className="text-selected-black dark:text-neutral-300">
|
|
|
+ <li className="text-selected-black">
|
|
|
<Link
|
|
|
aria-label={`${item?.title}`}
|
|
|
title={`${item?.title}`}
|
|
|
- className="block px-0 py-1 md:p-2 text-nowrap text-sm underline-offset-4 text-selected-black dark:text-neutral-300 hover:text-black hover:underline md:inline-block dark:hover:text-neutral-300"
|
|
|
+ className="block px-0 py-1 text-nowrap text-sm underline-offset-4 text-selected-black"
|
|
|
href={getUrlparams(item.url)}
|
|
|
>
|
|
|
{item.title}
|
|
|
@@ -46,10 +46,10 @@ export default function FooterMenu({
|
|
|
: firstTranslation?.options;
|
|
|
|
|
|
return (
|
|
|
- <div className="flex justify-between gap-x-8 lg:gap-x-[50px]">
|
|
|
+ <div className="">
|
|
|
{/* Render columns 1 */}
|
|
|
{isArray(channels?.column_1) ? (
|
|
|
- <nav className="w-full lg:min-w-[160px] xl:min-w-[200px]">
|
|
|
+ <nav className="w-full">
|
|
|
<ul>
|
|
|
{channels.column_1.map((item: ThemeOptions, index: number) => {
|
|
|
return <FooterMenuItem key={index} item={item} />;
|
|
|
@@ -60,7 +60,7 @@ export default function FooterMenu({
|
|
|
|
|
|
{/* Render columns 2 */}
|
|
|
{isArray(channels?.column_2) ? (
|
|
|
- <nav className="w-full lg:min-w-[160px] xl:min-w-[200px]">
|
|
|
+ <nav className="w-full">
|
|
|
<ul>
|
|
|
{channels.column_2.map((item: ThemeOptions, index: number) => {
|
|
|
return <FooterMenuItem key={index} item={item} />;
|
|
|
@@ -71,7 +71,7 @@ export default function FooterMenu({
|
|
|
|
|
|
{/* Render columns 3 */}
|
|
|
{isArray(channels?.column_3) ? (
|
|
|
- <nav className="w-full lg:min-w-[160px] xl:min-w-[200px]">
|
|
|
+ <nav className="w-full">
|
|
|
<ul>
|
|
|
{channels.column_3.map((item: ThemeOptions, index: number) => {
|
|
|
return <FooterMenuItem key={index} item={item} />;
|