diff --git a/src/components/common/modal/modal.module.scss b/src/components/common/modal/modal.module.scss index 3a9e82d..3685142 100644 --- a/src/components/common/modal/modal.module.scss +++ b/src/components/common/modal/modal.module.scss @@ -2,6 +2,7 @@ .modal { @include respond-to('mobile') { + min-width: unset; width: 90vw; } diff --git a/src/components/sections/community/socials/index.tsx b/src/components/sections/community/socials/index.tsx index e5679b8..19776e6 100644 --- a/src/components/sections/community/socials/index.tsx +++ b/src/components/sections/community/socials/index.tsx @@ -1,3 +1,4 @@ +import clsx from 'clsx' import Link from 'next/link' import Line from '~/components/icons/line' @@ -49,11 +50,16 @@ const Socials = ({ data, alternative }: Props) => { />
- + {alternative ? data?.socialsHeadingAlt : data?.socialsHeading}
- + {!alternative && }
{data?.socialsLine} diff --git a/src/components/sections/community/socials/socials.module.scss b/src/components/sections/community/socials/socials.module.scss index 5099b1d..bb26e77 100644 --- a/src/components/sections/community/socials/socials.module.scss +++ b/src/components/sections/community/socials/socials.module.scss @@ -34,6 +34,14 @@ flex-direction: column; width: 100%; + .alt_heading { + @include respond-to('mobile') { + width: 80%; + max-width: tovw(200px, 'default', 200px); + margin: auto; + } + } + h2 { @include respond-to('mobile') { text-align: center;