resolve padding of featured authors

This commit is contained in:
“Salar 2022-10-17 12:41:10 +03:00
parent 904730dfd9
commit 9154b1fb96

View File

@ -75,10 +75,12 @@ export default function FeaturedAuthorsCards(): JSX.Element {
return (
<div>
{/* The Title of Featured Authors section */}
<Heading className="text-center my-8 text-3xl font-semibold">{t("mainPage.featuredAuthors")}</Heading>
<Heading className="text-center my-8 text-3xl font-semibold">
{t("mainPage.featuredAuthors")}
</Heading>
{/* Featured Authors section */}
<div className="slider-wrapper Authors">
<div className="slider-wrapper Authors px-8">
<Swiper
slidesPerView={1.25}
slidesPerGroup={1}
@ -133,7 +135,7 @@ export default function FeaturedAuthorsCards(): JSX.Element {
<Card.CardAction href={card.Link}>
<Link className="text-blue-500 font-bold" to="*">
{t('mainPage.more')}
{t("mainPage.more")}
</Link>
<SVGCaretRight className="fill-blue-500 w-4 h-4" />
</Card.CardAction>