Apply various frontend fixes (#179)

This commit is contained in:
Charles Bochet
2023-06-01 19:22:26 +02:00
committed by GitHub
parent 05c8fac6d6
commit 9ffd347655
12 changed files with 98 additions and 72 deletions

View File

@ -2,7 +2,6 @@ import styled from '@emotion/styled';
import { forwardRef, useState } from 'react';
import { EditableCell } from './EditableCell';
import DatePicker from '../form/DatePicker';
import { modalBackground } from '../../layout/styles/themes';
import { humanReadableDate } from '../../services/utils';
export type EditableDateProps = {
@ -28,7 +27,7 @@ const StyledCalendarContainer = styled.div<StyledCalendarContainerProps>`
z-index: 1;
left: -10px;
top: 10px;
${modalBackground};
background: ${(props) => props.theme.secondaryBackground};
`;
function EditableDate({
value,