diff --git a/src/front/Components/Layouts/ClientDashboard/classes.module.scss b/src/front/Components/Layouts/ClientDashboard/classes.module.scss index 669d9522..97e56410 100644 --- a/src/front/Components/Layouts/ClientDashboard/classes.module.scss +++ b/src/front/Components/Layouts/ClientDashboard/classes.module.scss @@ -4,6 +4,7 @@ .header { display: flex; padding: 64px; + justify-content: space-between; @media (max-width: $screen-m) { flex-wrap: wrap; diff --git a/src/front/Components/Layouts/ClientDashboard/index.tsx b/src/front/Components/Layouts/ClientDashboard/index.tsx index 281f3a23..21794511 100644 --- a/src/front/Components/Layouts/ClientDashboard/index.tsx +++ b/src/front/Components/Layouts/ClientDashboard/index.tsx @@ -95,9 +95,11 @@ export default function ClientDashboard(props: IProps) {
{/* TODO Get name from userStore */} - - Bonjour {customer?.contact?.first_name.concat(" ", customer?.contact?.last_name)} - +
+ + Bonjour {customer?.contact?.first_name.concat(" ", customer?.contact?.last_name)} + +
Dossier {folder?.folder_number} - {folder?.name} @@ -117,9 +119,11 @@ export default function ClientDashboard(props: IProps) { sélectionnez le document correspondant.
En déposant un document, celui-ci est automatiquement enregistré et transmis à votre notaire.
- - {folder?.office?.rib_name && }
+ {folder?.office?.rib_name && ( + //Div to avoid the button to be on the same line as the text + + )}
); }, [customer, folder?.folder_number, folder?.name, folder?.office?.name]);