File tree Expand file tree Collapse file tree
features/detail/components/BottomActions Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { css , cva } from '@styled-system/css' ;
22
33export const Container = css ( {
4- position : 'fixed ' ,
4+ position : 'absolute ' ,
55 bottom : '0' ,
66 left : '0' ,
77 right : '0' ,
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ export const Container = css({
88
99export 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
1616export const ContentContainer = css ( {
Original file line number Diff line number Diff 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 /> ,
You canβt perform that action at this time.
0 commit comments