Skip to content

Commit bab8d43

Browse files
authored
Merge pull request #112 from DevKor-github/fix/#111
μ†Œμ†Œν•œ μˆ˜μ • (1λΆ„ PR κ°€λŠ₯)
2 parents 276da86 + 171503d commit bab8d43

3 files changed

Lines changed: 3 additions & 7 deletions

File tree

β€Žsrc/features/detail/components/BottomActions/style.css.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { css, cva } from '@styled-system/css';
22

33
export const Container = css({
4-
position: 'fixed',
4+
position: 'absolute',
55
bottom: '0',
66
left: '0',
77
right: '0',

β€Žsrc/pages/DetailPage/style.css.tsβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ export const Container = css({
88

99
export const ScrollContainer = css({
1010
width: 'full',
11-
height: 'full',
11+
height: 'calc(100% - {sizes.DETAIL_PAGE_NAVIGATOR_HEIGHT})',
1212
overflowY: 'auto',
13-
paddingBottom: 'DETAIL_PAGE_NAVIGATOR_HEIGHT',
13+
paddingBottom: '1rem',
1414
});
1515

1616
export const ContentContainer = css({

β€Žsrc/pages/routes.tsxβ€Ž

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ const routes: RouteObject[] = [
2323
path: '/',
2424
element: <HomePage />,
2525
},
26-
{
27-
path: '/pick',
28-
element: <PickPage />,
29-
},
3026
{
3127
path: '/detail/:id',
3228
element: <DetailPage />,

0 commit comments

Comments
Β (0)