diff --git a/apps/mobile/app/screens/Authenticated/ProfileScreen/components/ListCardItem.tsx b/apps/mobile/app/screens/Authenticated/ProfileScreen/components/ListCardItem.tsx index c21eca66d..4046a53cc 100644 --- a/apps/mobile/app/screens/Authenticated/ProfileScreen/components/ListCardItem.tsx +++ b/apps/mobile/app/screens/Authenticated/ProfileScreen/components/ListCardItem.tsx @@ -258,7 +258,7 @@ const ListCardItem: React.FC = (props) => { return ( @@ -285,6 +285,14 @@ const ListCardItem: React.FC = (props) => { export default ListCardItem const styles = StyleSheet.create({ + cardContainer: { + borderRadius: 14, + elevation: 24, + shadowColor: "#000", + shadowOffset: { width: 0, height: 12 }, + shadowOpacity: 0.05, + shadowRadius: 5, + }, dropdownTxt: { color: "#282048", fontFamily: typography.primary.semiBold, diff --git a/apps/mobile/app/screens/Authenticated/ProfileScreen/components/TimerButton.tsx b/apps/mobile/app/screens/Authenticated/ProfileScreen/components/TimerButton.tsx index 0172c68b1..8e2837384 100644 --- a/apps/mobile/app/screens/Authenticated/ProfileScreen/components/TimerButton.tsx +++ b/apps/mobile/app/screens/Authenticated/ProfileScreen/components/TimerButton.tsx @@ -82,7 +82,7 @@ const styles = StyleSheet.create({ shadowTimerNotRunning: { elevation: 10, shadowColor: "#3826A6", - shadowOffset: { width: 0, height: 10 }, + shadowOffset: { width: 0, height: 8 }, shadowOpacity: 0.5, shadowRadius: 10, },