feat(core): replace page filter, journal's date-picker with new one (#5675)

This commit is contained in:
Cats Juice
2024-02-20 13:53:41 +00:00
parent e664494b2f
commit 3fe9d834de
13 changed files with 185 additions and 94 deletions

View File

@@ -89,7 +89,9 @@ export const basicCell = style({
});
// roots
export const calendarRoot = style({});
export const calendarRoot = style({
minWidth: `calc(28px * 7 + ${vars.gapX} * 6)`,
});
export const calendarWrapper = style({
display: 'flex',
flexDirection: 'column',
@@ -101,7 +103,7 @@ export const calendarHeader = style({
});
// header
export const headerLayoutCell = style([basicCell]);
export const headerLayoutCell = style([basicCell, { height: 'auto' }]);
export const headerLayoutCellOrigin = style({
width: 0,
height: 'fit-content',