2018-08-08 17:09:02 +02:00
|
|
|
@import "colors";
|
|
|
|
@import "constants";
|
|
|
|
|
2021-11-22 14:46:10 +01:00
|
|
|
.dossier-container {
|
2018-08-10 15:32:39 +02:00
|
|
|
.sub-header {
|
|
|
|
h1 {
|
|
|
|
font-size: 22px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2018-08-08 17:09:02 +02:00
|
|
|
|
2018-08-10 15:32:39 +02:00
|
|
|
h2 {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2018-09-20 14:05:18 +02:00
|
|
|
|
|
|
|
.header-actions {
|
|
|
|
margin-bottom: $default-spacer;
|
2022-07-13 12:58:42 +02:00
|
|
|
display: flex;
|
2023-11-13 11:28:20 +01:00
|
|
|
|
2022-07-13 12:58:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-11 15:02:50 +02:00
|
|
|
.edit-identity-content {
|
|
|
|
.champ-row {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-13 12:58:42 +02:00
|
|
|
.edit-identity-action {
|
|
|
|
.dropdown-content {
|
|
|
|
padding: $default-padding;
|
|
|
|
min-width: 250px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.table {
|
|
|
|
margin-bottom: $default-padding * 2;
|
2018-09-20 14:05:18 +02:00
|
|
|
}
|
2018-08-08 17:09:02 +02:00
|
|
|
}
|
2018-08-14 15:06:44 +02:00
|
|
|
|
2018-09-04 18:30:31 +02:00
|
|
|
.messagerie-explanation {
|
|
|
|
margin-bottom: $default-padding * 2;
|
|
|
|
}
|
2018-09-11 18:40:10 +02:00
|
|
|
|
|
|
|
.latest-message-section {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
max-width: 700px;
|
|
|
|
margin-bottom: $default-padding * 2;
|
|
|
|
|
|
|
|
.button.send {
|
|
|
|
align-self: flex-end;
|
|
|
|
}
|
|
|
|
}
|
2018-08-08 17:09:02 +02:00
|
|
|
}
|
2023-11-13 11:28:20 +01:00
|
|
|
|
|
|
|
@media (min-width: 48em) {
|
|
|
|
.dossier-container {
|
|
|
|
.header-actions {
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-end;
|
|
|
|
gap: 0 $default-spacer * 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 48em) {
|
|
|
|
.dossier-container .header-actions {
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
|
|
|
gap: $default-spacer * 2 0;
|
|
|
|
|
|
|
|
.dropdown-button {
|
|
|
|
min-width: 100%;
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|