Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions components/CardWaitlist/CardFeesModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ type DetailItemProps = {

const DetailItem = ({ icon, title, description }: DetailItemProps) => (
<View className="flex-row gap-3">
<View className="h-12 w-12 items-center justify-center rounded-full bg-[#94F27F26]">
<Image source={icon} style={{ width: 28, height: 28 }} contentFit="contain" />
</View>
<Image source={icon} style={{ width: 50, height: 50 }} contentFit="contain" />
<View className="flex-1 gap-1">
<Text className="text-base font-semibold">{title}</Text>
{typeof description === 'string' ? (
Expand Down
2 changes: 1 addition & 1 deletion components/CardWaitlist/CardWaitlistContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const CardWaitlistContainer = ({ children }: CardWaitlistContainerProps) => {
start={isScreenMedium ? { x: 0.5, y: 0 } : { x: 0, y: 0.5 }}
end={isScreenMedium ? { x: 0.6, y: 1 } : { x: 1, y: 0.7 }}
className="overflow-hidden rounded-twice web:md:flex web:md:flex-row"
style={{ minHeight: 500, ...(Platform.OS === 'web' ? {} : { borderRadius: 20 }) }}
style={{ minHeight: 450, ...(Platform.OS === 'web' ? {} : { borderRadius: 20 }) }}
>
{isScreenMedium ? (
<ImageBackground
Expand Down
2 changes: 1 addition & 1 deletion components/CardWaitlist/SolidCardSummary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ type FeatureItemProps = {

const FeatureItem = ({ icon, label }: FeatureItemProps) => (
<View className="flex-row items-center gap-2">
<View className="h-7 w-7 items-center justify-center rounded-md bg-[#94F27F26]">{icon}</View>
<View className="h-9 w-9 items-center justify-center rounded-full bg-[#94F27F26]">{icon}</View>
<Text className="text-base font-medium">{label}</Text>
</View>
);
Expand Down
Loading