diff --git a/src/components/Navigation/MainMenu.tsx b/src/components/Navigation/MainMenu.tsx index d3fcab1..740e843 100644 --- a/src/components/Navigation/MainMenu.tsx +++ b/src/components/Navigation/MainMenu.tsx @@ -30,9 +30,6 @@ const MainMenu: FC = (): JSX.Element | null => {
  • Mon profil
  • -
  • - Equipes -
  • diff --git a/src/components/VolunteerBoard/Board.tsx b/src/components/VolunteerBoard/Board.tsx index 279d90f..dec442f 100644 --- a/src/components/VolunteerBoard/Board.tsx +++ b/src/components/VolunteerBoard/Board.tsx @@ -16,7 +16,7 @@ import VolunteerConfirmation from "../VolunteerConfirmation/VolunteerConfirmatio const Board: FC = (): JSX.Element => ( <> - + diff --git a/src/components/VolunteerBoard/DayWishes/DayWishes.tsx b/src/components/VolunteerBoard/DayWishes/DayWishes.tsx index f001c1d..54e0d05 100644 --- a/src/components/VolunteerBoard/DayWishes/DayWishes.tsx +++ b/src/components/VolunteerBoard/DayWishes/DayWishes.tsx @@ -14,9 +14,10 @@ const DayWishes: FC = (): JSX.Element | null => { return (
    +
    Mes présences
    - Mes jours de présence : - {dayWishesString && {dayWishesString}} + Mes jours : + {dayWishesString && {dayWishesString}} {!dayWishesString && Non renseignés}
    {comment && ( diff --git a/src/components/VolunteerBoard/DayWishes/styles.module.scss b/src/components/VolunteerBoard/DayWishes/styles.module.scss index 5af7a36..23ead1a 100755 --- a/src/components/VolunteerBoard/DayWishes/styles.module.scss +++ b/src/components/VolunteerBoard/DayWishes/styles.module.scss @@ -1,6 +1,11 @@ @import "../../../theme/variables"; @import "../../../theme/mixins"; +.title { + padding-bottom: 5px; + font-weight: bold; +} + .dayWishes { @include inner-content-wrapper(); @@ -17,7 +22,6 @@ .dayLineTitle { padding-right: 5px; - font-weight: bold; } .dayLineEmpty { diff --git a/src/components/VolunteerBoard/DayWishesForm/DayWishesForm.tsx b/src/components/VolunteerBoard/DayWishesForm/DayWishesForm.tsx index 7d40c90..a4cdab2 100644 --- a/src/components/VolunteerBoard/DayWishesForm/DayWishesForm.tsx +++ b/src/components/VolunteerBoard/DayWishesForm/DayWishesForm.tsx @@ -50,7 +50,7 @@ const DayWishesForm: FC = ({ afterSubmit }): JSX.Element => { }, [selection, commentRef, saveWishes, afterSubmit]) return ( -
    +
    Mes jours de présence
      {daysChoice.map(({ id, label }) => ( diff --git a/src/components/VolunteerBoard/DayWishesForm/styles.module.scss b/src/components/VolunteerBoard/DayWishesForm/styles.module.scss index 792a06b..afedbb6 100755 --- a/src/components/VolunteerBoard/DayWishesForm/styles.module.scss +++ b/src/components/VolunteerBoard/DayWishesForm/styles.module.scss @@ -1,10 +1,6 @@ @import "../../../theme/variables"; @import "../../../theme/mixins"; -.dayWishesForm { - width: 470px; -} - .dayWishesTitle { padding: 15px 0; font-weight: bold; @@ -13,6 +9,8 @@ .dayWishesList { @include clear-ul-style; + + text-align: center; } .dayWishesItem { diff --git a/src/components/VolunteerBoard/ParticipationDetails/ParticipationDetails.tsx b/src/components/VolunteerBoard/ParticipationDetails/ParticipationDetails.tsx index 19c1948..bc11a0c 100644 --- a/src/components/VolunteerBoard/ParticipationDetails/ParticipationDetails.tsx +++ b/src/components/VolunteerBoard/ParticipationDetails/ParticipationDetails.tsx @@ -23,30 +23,30 @@ const ParticipationDetails: FC = (): JSX.Element | null => { return (
      -
      Mes informations pour le festival
      +
      Mes infos logistiques
      {tshirtCount === 0 && (
      - Je n'ai aucun t-shirt. (Taille {tshirtSize}) + Je n'ai aucun t-shirt et je suis taillé {tshirtSize}
      )} {tshirtCount === 1 && (
      - J'ai déjà 1 t-shirt. (Taille {tshirtSize}) + J'ai déjà 1 t-shirt et je suis taillé {tshirtSize}
      )} {tshirtCount === 2 && (
      - J'ai déjà 2 t-shirts. + J'ai déjà 2 t-shirts
      )} {adult === 0 && (
      - Je suis mineur + Je serai mineur les 2-3 juillet 2022
      )} {adult === 1 && (
      - Je suis majeur + Je serai majeur les 2-3 juillet 2022
      )}
      diff --git a/src/components/VolunteerBoard/ParticipationDetailsForm/ParticipationDetailsForm.tsx b/src/components/VolunteerBoard/ParticipationDetailsForm/ParticipationDetailsForm.tsx index 3d4539e..e1c3037 100644 --- a/src/components/VolunteerBoard/ParticipationDetailsForm/ParticipationDetailsForm.tsx +++ b/src/components/VolunteerBoard/ParticipationDetailsForm/ParticipationDetailsForm.tsx @@ -61,7 +61,7 @@ const ParticipationDetailsForm: FC = ({ afterSubmit }): JSX.Element | nul return (
      -
      Mes informations pour le festival
      +
      Mes infos logistiques
      Combien as-tu de t-shirts PeL ?
      @@ -98,10 +98,12 @@ const ParticipationDetailsForm: FC = ({ afterSubmit }): JSX.Element | nul
      -
      Taille
      +
      - {tshirtSizes.map((size) => (
      - +
      = (): JSX.Element | null => { return (
      Mon choix d'équipe
      - {teamWishesString && {teamWishesString}} + {teamWishesString && ( + + Mes équipes préférées : {teamWishesString} + + )} {!teamWishesString && Non renseignés} {comment && (