This commit is contained in:
2025-10-12 13:35:43 +02:00
parent 865644914c
commit 0a32a37681
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ export default ({
style={{ style={{
height: "100%", height: "100%",
paddingTop: isWeb ? gutters / 2 : 0, paddingTop: isWeb ? gutters / 2 : 0,
// padding: gutters, padding: gutters,
paddingBottom: 0, paddingBottom: 0,
...(isWeb ? { maxHeight: "100svh" } : {}), ...(isWeb ? { maxHeight: "100svh" } : {}),
width: computedWidth, width: computedWidth,
+3 -3
View File
@@ -20,7 +20,7 @@ import { isWeb } from "../../hooks/useLayoutType.js";
import Page from "../../layouts/Page"; import Page from "../../layouts/Page";
import { navigate } from "../../navigation/NavigationService"; import { navigate } from "../../navigation/NavigationService";
import { useUser } from "../../providers/UserDataProvider"; import { useUser } from "../../providers/UserDataProvider";
import { gutters, Palette } from "../../styles"; import { Palette } from "../../styles";
import { import {
findFirstUnlockedStageIndex, findFirstUnlockedStageIndex,
getCreationStageStates, getCreationStageStates,
@@ -252,7 +252,7 @@ const Home = () => {
<Page <Page
shareBtn shareBtn
headerType="NONE" headerType="NONE"
containerStyle={{ width: "100%", maxWidth: "100%" }} containerStyle={{ width: "100%", maxWidth: "100%", paddingHorizontal: 0 }}
> >
<View style={styles.root}> <View style={styles.root}>
<View <View
@@ -264,7 +264,7 @@ const Home = () => {
alignSelf: "center", alignSelf: "center",
flexDirection: isWeb ? "column" : "row", flexDirection: isWeb ? "column" : "row",
alignItems: "center", alignItems: "center",
paddingHorizontal: isWeb ? 0 : gutters, paddingHorizontal: isWeb ? 0 : 30,
gap: 10, gap: 10,
}} }}
> >
+1 -1
View File
@@ -335,7 +335,7 @@ const PlaybackItem = ({ item, isActive, userCache, getUserByUid }) => {
fontFamily: FONT_FAMILY.InterMedium, fontFamily: FONT_FAMILY.InterMedium,
}} }}
> >
{isFollowing ? "Ne plus suivre" : "Suivre"} {isFollowing ? "Suivi(e)" : "Suivre"}
</Text> </Text>
</BlurView> </BlurView>
</Pressable> </Pressable>
@@ -566,7 +566,7 @@ const PlaybackItem = ({
style={styles.followButton} style={styles.followButton}
> >
<Text style={styles.followButtonText}> <Text style={styles.followButtonText}>
{isFollowing ? "Ne plus suivre" : "Suivre"} {isFollowing ? "Suivi(e)" : "Suivre"}
</Text> </Text>
</BlurView> </BlurView>
</Pressable> </Pressable>
+1 -1
View File
@@ -482,7 +482,7 @@ const Profile = () => {
fontFamily: FONT_FAMILY.InterSemiBold, fontFamily: FONT_FAMILY.InterSemiBold,
}} }}
> >
{isFollowing ? "Ne plus suivre" : "Suivre"} {isFollowing ? "Suivi(e)" : "Suivre"}
</Text> </Text>
</View> </View>
</Pressable> </Pressable>