Skip to content

Commit

Permalink
suppression de <br/> et ajout de className={fr.cx('fr-mb-3v')} à la p…
Browse files Browse the repository at this point in the history
…lace
  • Loading branch information
cbrousseau1 committed Dec 3, 2024
1 parent b2f0c1a commit df42186
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,7 @@ const UploadLayerStyles: FC<UploadLayerStylesProps> = ({ form, format, layers })
return (
<>
<p>{t("add_file", { format: format })}</p>
{format === "qml" && (
<>
<Alert closable={false} description={t("qml_message")} severity="warning" small />
<br />
</>
)}
{format === "qml" && <Alert className={fr.cx("fr-mb-3v")} closable={false} description={t("qml_message")} severity="warning" small />}
{Object.keys(layers).map((uid) => {
return (
<div key={uid} className={fr.cx("fr-grid-row", "fr-mb-3w")}>
Expand Down

0 comments on commit df42186

Please sign in to comment.