diff --git a/components/quests/questBanner.tsx b/components/quests/questBanner.tsx index b3b1a48c..a58daba5 100644 --- a/components/quests/questBanner.tsx +++ b/components/quests/questBanner.tsx @@ -22,15 +22,17 @@ const QuestBanner: FunctionComponent = ({ banner }) => { {banner.title}

{banner.description}

-
- -
+ {banner.cta ? ( +
+ +
+ ) : null} ) : null; diff --git a/public/braavos/strkFarmQuest.webp b/public/braavos/strkFarmQuest.webp new file mode 100644 index 00000000..027caa60 Binary files /dev/null and b/public/braavos/strkFarmQuest.webp differ diff --git a/styles/quests.module.css b/styles/quests.module.css index b6b91cc2..c2a10fc7 100644 --- a/styles/quests.module.css +++ b/styles/quests.module.css @@ -330,7 +330,6 @@ font-weight: 700; line-height: 30px; letter-spacing: 0.16px; - margin-top: 1rem; width: fit-content; } @@ -344,6 +343,7 @@ width: 201px; height: 100%; background-size: cover; + aspect-ratio: 1/1; } @media (max-width: 1024px) { @@ -441,5 +441,6 @@ height: 100px; border-bottom-left-radius: 0; border-top-left-radius: 8px; + aspect-ratio: unset; } }