Fixed coding styles

This commit is contained in:
Alejandro Celaya 2022-05-14 16:38:25 +02:00
parent ed366fa4cc
commit bd3555db94
2 changed files with 7 additions and 7 deletions

View file

@ -1,11 +1,5 @@
@import '../utils/base';
.input-group > .react-tags {
flex: 1 1 auto;
width: 1%;
min-width: 0;
}
.react-tags {
position: relative;
padding: 5px 0 0 6px;
@ -22,6 +16,12 @@
cursor: text;
}
.input-group > .react-tags {
flex: 1 1 auto;
width: 1%;
min-width: 0;
}
.card .react-tags {
background-color: var(--input-color);
}

View file

@ -1,6 +1,6 @@
import { endOfDay } from 'date-fns';
import DateInput from '../DateInput';
import { DateRange } from './types';
import { endOfDay } from 'date-fns';
interface DateRangeRowProps extends DateRange {
onStartDateChange: (date: Date | null) => void;