Skip to content

Commit

Permalink
correctif(dossiers): ETQ usager, le menu d'invitation etait cassé sur…
Browse files Browse the repository at this point in the history
… mobile
  • Loading branch information
Martin committed Nov 13, 2023
1 parent 9ab918c commit 5632fda
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions app/assets/stylesheets/dossier_views.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
.header-actions {
margin-bottom: $default-spacer;
display: flex;
justify-content: flex-end;
column-gap: $default-spacer * 2;

}
}

Expand Down Expand Up @@ -54,3 +53,27 @@
}
}
}

@media (min-width: 48em) {
.dossier-container {
.header-actions {
flex-direction: row;
justify-content: flex-end;
column-gap: $default-spacer * 2;
}
}
}

@media (max-width: 48em) {
.dossier-container .header-actions {
row-gap: $default-spacer * 2;
flex-direction: column;
justify-content: stretch;

.dropdown-button {
min-width: 100%;
white-space: normal;
}
}
}
}

0 comments on commit 5632fda

Please sign in to comment.