Skip to content

Commit

Permalink
removed highlight background suggested in review
Browse files Browse the repository at this point in the history
  • Loading branch information
lelemm committed Nov 22, 2024
1 parent 8c06842 commit 190e157
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { useDispatch } from 'react-redux';
import { useParams, useSearchParams } from 'react-router-dom';
import { useSpring, animated, config } from 'react-spring';

import { css } from '@emotion/css';
import { useDrag } from '@use-gesture/react';
import { format, parseISO } from 'date-fns';

Expand Down Expand Up @@ -662,7 +663,11 @@ function CalendarInner({ widget, parameters }: CalendarInnerProps) {
? open({ canceled: false })
: close()
}
style={{ color: theme.pageTextSubdued, height: 42 }}
className={css({
color: theme.pageTextSubdued,
height: 42,
'&[data-pressed]': { backgroundColor: 'transparent' },
})}
>
{!mobileTransactionsOpen && (
<>
Expand Down

0 comments on commit 190e157

Please sign in to comment.