Skip to content

Commit 1d6212d

Browse files
committed
Enable FeatureToggle on mobile
1 parent 15116ed commit 1d6212d

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/ui/screens/landing-page/sections/footer/components/FeatureToggle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const FeatureToggle = () => {
4040

4141
return (
4242
<>
43-
<IconButton onClick={handleDialogOpen}>
43+
<IconButton onClick={handleDialogOpen} sx={{ p: 0, alignSelf: 'flex-start' }}>
4444
<SettingsIcon />
4545
</IconButton>
4646

src/ui/screens/landing-page/sections/footer/views/LandingPageFooterMobile.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import GitHubLink from "@/ui/shared-components/GitHubLink";
77
import theme from "@/theme";
88
import RegularButton from "@/ui/shared-components/buttons/RegularButton";
99
import useTranslation from "@/ui/language/useTranslation";
10+
import FeatureToggle from "@/ui/screens/landing-page/sections/footer/components/FeatureToggle";
1011

1112
const LandingPageFooterMobile = () => {
1213
const { t } = useTranslation();
@@ -27,6 +28,7 @@ const LandingPageFooterMobile = () => {
2728
<EmailLink email={'info@foerderfunke.org'} />
2829
<LinkedInLink linkedin={'https://www.linkedin.com/company/foerderfunke'} />
2930
<GitHubLink href={"https://github.com/Citizen-Knowledge-Graph"} />
31+
<FeatureToggle />
3032
</VBox>
3133
</VBox>
3234
<VBox>

0 commit comments

Comments
 (0)