From 65e1d56493eb8f68eced7c13b8c3a7d5af71293a Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sun, 12 Jul 2026 09:47:51 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Palette:=20Add=20platform=20ambi?= =?UTF-8?q?ent=20shadows=20to=20KPI=20cards=20in=20reports?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: kourdroid <36898160+kourdroid@users.noreply.github.com> --- app/(admin)/reports.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/app/(admin)/reports.tsx b/app/(admin)/reports.tsx index 9e786c2..9f26fc3 100644 --- a/app/(admin)/reports.tsx +++ b/app/(admin)/reports.tsx @@ -9,6 +9,7 @@ import { ActivityIndicator, Alert, Linking, + Platform, ScrollView, StyleSheet, Text, @@ -376,6 +377,17 @@ const styles = StyleSheet.create({ borderWidth: 1, borderColor: COLORS.border, padding: SPACING.md, + ...Platform.select({ + ios: { + shadowColor: '#000', + shadowOffset: { width: 0, height: 2 }, + shadowOpacity: 0.04, + shadowRadius: 6, + }, + android: { + elevation: 2, + }, + }), }, kpiIcon: { width: 32,