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={{
height: "100%",
paddingTop: isWeb ? gutters / 2 : 0,
// padding: gutters,
padding: gutters,
paddingBottom: 0,
...(isWeb ? { maxHeight: "100svh" } : {}),
width: computedWidth,
+3 -3
View File
@@ -20,7 +20,7 @@ import { isWeb } from "../../hooks/useLayoutType.js";
import Page from "../../layouts/Page";
import { navigate } from "../../navigation/NavigationService";
import { useUser } from "../../providers/UserDataProvider";
import { gutters, Palette } from "../../styles";
import { Palette } from "../../styles";
import {
findFirstUnlockedStageIndex,
getCreationStageStates,
@@ -252,7 +252,7 @@ const Home = () => {
<Page
shareBtn
headerType="NONE"
containerStyle={{ width: "100%", maxWidth: "100%" }}
containerStyle={{ width: "100%", maxWidth: "100%", paddingHorizontal: 0 }}
>
<View style={styles.root}>
<View
@@ -264,7 +264,7 @@ const Home = () => {
alignSelf: "center",
flexDirection: isWeb ? "column" : "row",
alignItems: "center",
paddingHorizontal: isWeb ? 0 : gutters,
paddingHorizontal: isWeb ? 0 : 30,
gap: 10,
}}
>
+1 -1
View File
@@ -335,7 +335,7 @@ const PlaybackItem = ({ item, isActive, userCache, getUserByUid }) => {
fontFamily: FONT_FAMILY.InterMedium,
}}
>
{isFollowing ? "Ne plus suivre" : "Suivre"}
{isFollowing ? "Suivi(e)" : "Suivre"}
</Text>
</BlurView>
</Pressable>
@@ -566,7 +566,7 @@ const PlaybackItem = ({
style={styles.followButton}
>
<Text style={styles.followButtonText}>
{isFollowing ? "Ne plus suivre" : "Suivre"}
{isFollowing ? "Suivi(e)" : "Suivre"}
</Text>
</BlurView>
</Pressable>
+1 -1
View File
@@ -482,7 +482,7 @@ const Profile = () => {
fontFamily: FONT_FAMILY.InterSemiBold,
}}
>
{isFollowing ? "Ne plus suivre" : "Suivre"}
{isFollowing ? "Suivi(e)" : "Suivre"}
</Text>
</View>
</Pressable>