mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-09-02 04:01:43 +02:00
web: basic fixes
This commit is contained in:
@@ -558,17 +558,6 @@ export function Footer() {
|
||||
))}
|
||||
</Flex>
|
||||
</Flex>
|
||||
<Button
|
||||
variant="new_accent"
|
||||
sx={{ alignSelf: "center", mt: "spacing2", mb: "spacing13" }}
|
||||
onClick={() =>
|
||||
document
|
||||
.getElementById("select-plan")
|
||||
?.scrollIntoView({ behavior: "smooth" })
|
||||
}
|
||||
>
|
||||
Upgrade now
|
||||
</Button>
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -619,23 +608,24 @@ function RecurringPricing(props: PricingProps) {
|
||||
}}
|
||||
>
|
||||
{getCurrencySymbol(plan.currency)}
|
||||
{monthlyPrice}
|
||||
{monthlyPrice}{" "}
|
||||
{isZero ? (
|
||||
""
|
||||
) : (
|
||||
<Text
|
||||
as="span"
|
||||
sx={{
|
||||
fontSize: "md",
|
||||
color: "paragraph-secondary",
|
||||
fontWeight: 400
|
||||
}}
|
||||
>
|
||||
{" "}
|
||||
/Month
|
||||
</Text>
|
||||
)}
|
||||
</Text>
|
||||
{isZero ? (
|
||||
""
|
||||
) : (
|
||||
<Text
|
||||
as="span"
|
||||
sx={{
|
||||
fontSize: "md",
|
||||
color: "paragraph-secondary",
|
||||
fontWeight: 400
|
||||
}}
|
||||
>
|
||||
{" "}
|
||||
/ month
|
||||
</Text>
|
||||
)}
|
||||
|
||||
<Text
|
||||
as="div"
|
||||
sx={{ fontSize: "xxs", color: "paragraph-secondary", fontWeight: 400 }}
|
||||
|
||||
@@ -120,11 +120,7 @@ function Plans() {
|
||||
}}
|
||||
>
|
||||
Skip
|
||||
<ChevronLeft
|
||||
size={14}
|
||||
sx={{ transform: "rotate(180deg)" }}
|
||||
color="heading"
|
||||
/>
|
||||
<ChevronLeft size={14} color="heading" />
|
||||
</Button>
|
||||
<Flex
|
||||
sx={{
|
||||
|
||||
Reference in New Issue
Block a user