From bd3555db942c5e411f671b9c322fe1e4227db9f7 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sat, 14 May 2022 16:38:25 +0200 Subject: [PATCH] Fixed coding styles --- src/common/react-tag-autocomplete.scss | 12 ++++++------ src/utils/dates/DateRangeRow.tsx | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/common/react-tag-autocomplete.scss b/src/common/react-tag-autocomplete.scss index c8b9e37c..8fbfb824 100644 --- a/src/common/react-tag-autocomplete.scss +++ b/src/common/react-tag-autocomplete.scss @@ -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); } diff --git a/src/utils/dates/DateRangeRow.tsx b/src/utils/dates/DateRangeRow.tsx index f7d0633f..a3a2e917 100644 --- a/src/utils/dates/DateRangeRow.tsx +++ b/src/utils/dates/DateRangeRow.tsx @@ -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;