diff --git a/project/front/src/components/input/index.tsx b/project/front/src/components/input/index.tsx index 822e723..ef29248 100644 --- a/project/front/src/components/input/index.tsx +++ b/project/front/src/components/input/index.tsx @@ -15,7 +15,7 @@ export default function Input() { const enableYear: boolean = MATCHER_TYPES.find((matcher) => matcher.key == currentMatcher)?.year || false return ( - + - + {currentTitle} diff --git a/project/front/src/components/results/result/index.tsx b/project/front/src/components/results/result/index.tsx index 5e64369..94325f8 100644 --- a/project/front/src/components/results/result/index.tsx +++ b/project/front/src/components/results/result/index.tsx @@ -1,4 +1,4 @@ -import { Container, Badge, Row, BadgeGroup } from "@dataesr/dsfr-plus" +import { Container, Badge, Row, BadgeGroup, Accordion } from "@dataesr/dsfr-plus" import { MatchId, MatchResults } from "../../../types/data" import useUrl from "../../../hooks/useUrl" import { getResultHighlights } from "../utils/highlights" @@ -23,9 +23,9 @@ export default function Result({ const resultUrl = getResultUrl(resultId, currentMatcher) return ( - + - + {resultUrl ? ( {resultEnriched.country[0]}} - + + + ) } diff --git a/project/front/src/styles/index.scss b/project/front/src/styles/index.scss index 12b04b2..3a18b74 100644 --- a/project/front/src/styles/index.scss +++ b/project/front/src/styles/index.scss @@ -1,12 +1,16 @@ -.bg-input { +.input { background-color: var(--background-alt-blue-cumulus) !important; } + +.card { + box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; +} + .sticky { background-color: white; position: sticky; top: 0px; z-index: 1; - box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; padding-top: 15px; padding-bottom: 1px; -} \ No newline at end of file +}