Skip to content

Commit 171503d

Browse files
committed
fix: bottom action & detail page scroll style
1 parent 678b124 commit 171503d

2 files changed

Lines changed: 3 additions & 3 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({

0 commit comments

Comments
ย (0)