player styling

This commit is contained in:
Violet Caulfield
2025-01-25 11:43:39 -06:00
parent 89d7bb027d
commit 7a9710ba1c
3 changed files with 4 additions and 3 deletions

View File

@@ -22,7 +22,6 @@ export default function IconCard({
margin={5}
>
<Card
elevate
borderRadius={"$7"}
animation="bouncy"
hoverStyle={{ scale: 0.925 }}

View File

@@ -34,7 +34,6 @@ export function ItemCard(props: CardProps) {
margin={5}
>
<TamaguiCard
elevate
size="$4"
borderRadius={props.cornered ? 2 : 25}
animation="bouncy"

View File

@@ -209,7 +209,7 @@ export default function PlayerScreen({ navigation }: { navigation: NativeStackNa
/>
{/* I really wanted a big clunky play button */}
<PlayPauseButton size={width / 8} />
<PlayPauseButton size={width / 7} />
<Icon
large
@@ -232,6 +232,7 @@ export default function PlayerScreen({ navigation }: { navigation: NativeStackNa
<Icon
color={theme.color.val}
name="speaker-multiple"
large
/>
<Spacer />
@@ -242,6 +243,7 @@ export default function PlayerScreen({ navigation }: { navigation: NativeStackNa
onPress={() => {
navigation.goBack();
}}
large
/>
<Spacer />
@@ -253,6 +255,7 @@ export default function PlayerScreen({ navigation }: { navigation: NativeStackNa
onPress={() => {
navigation.navigate("Queue");
}}
large
/>
</XStack>
</YStack>