Skip to content

Commit

Permalink
Fix safari/firefox on pricing page (#1626)
Browse files Browse the repository at this point in the history
* Fix safari

* Fix gray

* Fix prettier
  • Loading branch information
nachoiacovino authored Sep 7, 2023
1 parent 9b3f46e commit 6a39ddf
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions pages/pricing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -493,12 +493,12 @@ const Pricing: ThirdwebNextPage = () => {
</Flex>
{!isMobile && (
<>
<Text size="body.xl" color="gray.700" textAlign="center">
<Text size="body.xl" color="gray.600" textAlign="center">
Starter
</Text>
<Text
size="body.xl"
color="gray.700"
color="gray.600"
textAlign="center"
bgGradient="linear(to-r, #4830A4, #9786DF)"
bgClip="text"
Expand All @@ -519,7 +519,6 @@ const Pricing: ThirdwebNextPage = () => {
borderRadius="none"
borderColor={{ base: "transparent", md: "gray.900" }}
borderLeft="none"
h="full"
as={Flex}
alignItems="center"
>
Expand All @@ -542,7 +541,7 @@ const Pricing: ThirdwebNextPage = () => {
borderRight="none"
>
<Text
color="gray.700"
color="gray.600"
size="body.lg"
textAlign="center"
>
Expand Down Expand Up @@ -573,7 +572,7 @@ const Pricing: ThirdwebNextPage = () => {
{isMobile && <Text size="body.lg">Starter</Text>}
<Text
w="full"
color="gray.700"
color="gray.600"
size="body.lg"
textAlign={{ base: "right", md: "center" }}
>
Expand Down Expand Up @@ -602,7 +601,7 @@ const Pricing: ThirdwebNextPage = () => {
>
{isMobile && <Text size="body.lg">Pro</Text>}
<Text
color="gray.700"
color="gray.600"
size="body.lg"
textAlign={{ base: "right", md: "center" }}
w="full"
Expand Down

0 comments on commit 6a39ddf

Please sign in to comment.