Skip to content

Commit

Permalink
fix : 모바일 환경
Browse files Browse the repository at this point in the history
  • Loading branch information
kangjuhyup committed Jan 22, 2025
1 parent a0a0873 commit 4d31525
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions packages/page/src/components/footer/text.footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
Popover,
Stack,
Button,
Box,
} from '@mantine/core';
import {
IconBold,
Expand Down Expand Up @@ -152,20 +153,20 @@ const TextControlFooter = ({
return (
<>
<AppShell.Footer
p="md"
p={0}
style={{
borderTop: '1px solid var(--mantine-color-dark-4)',
}}
>
<Grid justify="center" align="center">
{footerActions.map((action, index) => (
<Grid.Col span={2} key={index}>
<Group justify="center" align="center" gap="xs" style={{ height: '100%' }}>
<Box style={{ overflowX: 'auto', WebkitOverflowScrolling: 'touch', padding: '8px 16px' }}>
<Group justify="flex-start" wrap="nowrap" style={{ minWidth: 'max-content' }}>
{footerActions.map((action, index) => (
<Box key={index} px="xs">
{action.icon}
</Group>
</Grid.Col>
))}
</Grid>
</Box>
))}
</Group>
</Box>
</AppShell.Footer>
<Modal
opened={openPicker}
Expand Down

0 comments on commit 4d31525

Please sign in to comment.