From 0a32a37681600acdcb08cba2064e5e95be30d695 Mon Sep 17 00:00:00 2001 From: leon-morival Date: Sun, 12 Oct 2025 13:35:43 +0200 Subject: [PATCH] fix page --- src/layouts/Page.js | 2 +- src/screens/Home/Home.js | 6 +++--- src/screens/Playbacks/Playbacks.js | 2 +- src/screens/Playbacks/components/PlaybackItem.web.js | 2 +- src/screens/Profile/Profile.js | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/layouts/Page.js b/src/layouts/Page.js index aee3242..a749efb 100644 --- a/src/layouts/Page.js +++ b/src/layouts/Page.js @@ -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, diff --git a/src/screens/Home/Home.js b/src/screens/Home/Home.js index 3fe22d5..6078ac1 100644 --- a/src/screens/Home/Home.js +++ b/src/screens/Home/Home.js @@ -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 = () => { { alignSelf: "center", flexDirection: isWeb ? "column" : "row", alignItems: "center", - paddingHorizontal: isWeb ? 0 : gutters, + paddingHorizontal: isWeb ? 0 : 30, gap: 10, }} > diff --git a/src/screens/Playbacks/Playbacks.js b/src/screens/Playbacks/Playbacks.js index 33d7b57..ffc537e 100644 --- a/src/screens/Playbacks/Playbacks.js +++ b/src/screens/Playbacks/Playbacks.js @@ -335,7 +335,7 @@ const PlaybackItem = ({ item, isActive, userCache, getUserByUid }) => { fontFamily: FONT_FAMILY.InterMedium, }} > - {isFollowing ? "Ne plus suivre" : "Suivre"} + {isFollowing ? "Suivi(e)" : "Suivre"} diff --git a/src/screens/Playbacks/components/PlaybackItem.web.js b/src/screens/Playbacks/components/PlaybackItem.web.js index 5cee8db..8393ac7 100644 --- a/src/screens/Playbacks/components/PlaybackItem.web.js +++ b/src/screens/Playbacks/components/PlaybackItem.web.js @@ -566,7 +566,7 @@ const PlaybackItem = ({ style={styles.followButton} > - {isFollowing ? "Ne plus suivre" : "Suivre"} + {isFollowing ? "Suivi(e)" : "Suivre"} diff --git a/src/screens/Profile/Profile.js b/src/screens/Profile/Profile.js index 738c4fd..5900d0d 100644 --- a/src/screens/Profile/Profile.js +++ b/src/screens/Profile/Profile.js @@ -482,7 +482,7 @@ const Profile = () => { fontFamily: FONT_FAMILY.InterSemiBold, }} > - {isFollowing ? "Ne plus suivre" : "Suivre"} + {isFollowing ? "Suivi(e)" : "Suivre"}