fix styling

This commit is contained in:
AykutSarac 2024-05-15 18:06:37 +03:00
parent 74c24959a9
commit 92a8e9f116
No known key found for this signature in database
2 changed files with 5 additions and 2 deletions

View File

@ -83,6 +83,7 @@ export const UpgradeModal = ({ opened, onClose }: ModalProps) => {
px="sm" px="sm"
style={{ style={{
borderColor: getBorderColor("monthly"), borderColor: getBorderColor("monthly"),
cursor: "pointer",
}} }}
onClick={() => setPlan("monthly")} onClick={() => setPlan("monthly")}
> >
@ -95,12 +96,13 @@ export const UpgradeModal = ({ opened, onClose }: ModalProps) => {
p="sm" p="sm"
style={{ style={{
borderColor: getBorderColor("annual"), borderColor: getBorderColor("annual"),
cursor: "pointer",
}} }}
onClick={() => setPlan("annual")} onClick={() => setPlan("annual")}
> >
<Flex justify="space-between"> <Flex justify="space-between">
<Radio value="annual" label="Annual" size="xs" /> <Radio value="annual" label="Annual" size="xs" />
<Badge color="blue" size="xs" radius="sm"> <Badge variant="light" color="blue" size="xs" radius="sm">
Save 16% Save 16%
</Badge> </Badge>
</Flex> </Flex>
@ -127,7 +129,7 @@ export const UpgradeModal = ({ opened, onClose }: ModalProps) => {
<List.Item>Compare Data</List.Item> <List.Item>Compare Data</List.Item>
<List.Item>Edit on Graphs</List.Item> <List.Item>Edit on Graphs</List.Item>
<List.Item> <List.Item>
<Anchor fz="sm" href="/#preview" target="_blank"> <Anchor c="gray" fz="sm" href="/#preview" target="_blank">
...and more ...and more
</Anchor> </Anchor>
</List.Item> </List.Item>

View File

@ -18,6 +18,7 @@ const theme = createTheme({
autoContrast: true, autoContrast: true,
fontSmoothing: false, fontSmoothing: false,
respectReducedMotion: true, respectReducedMotion: true,
cursorType: "pointer",
primaryShade: 8, primaryShade: 8,
}); });