Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • web-et-numerique/factory/pamn_plateforme-des-acteurs-de-la-mediation-numerique/pamn_client
1 result
Show changes
Commits on Source (2)
......@@ -71,7 +71,9 @@ export class ProfileStructureComponent implements OnInit {
public getAddress(): string {
const address = this.structureWithOwners.structure.address;
return address.numero + ' ' + address.street + ' - ' + address.commune;
return address.numero
? address.numero + ' ' + address.street + ' - ' + address.commune
: address.street + ' - ' + address.commune;
}
public closeAddMemberModal(memberAddRequested: boolean): void {
......
......@@ -21,9 +21,8 @@
border: 1px solid $grey-6;
box-sizing: border-box;
margin: 1rem auto;
padding: 2rem;
max-width: 980px;
height: calc(100% - $header-height - $footer-height);
height: calc(100vh - $header-height - $footer-height - 2rem); //2rem are needed because of 1rem margin
display: flex;
flex-direction: column;
justify-content: space-between;
......@@ -32,7 +31,7 @@
height: 90%;
overflow-y: scroll;
overflow-x: hidden;
padding-right: 5px;
padding: 2rem;
p {
margin: 0;
......@@ -171,6 +170,7 @@
justify-content: center;
gap: 24px;
padding-top: 1rem;
padding-bottom: 8px;
}
}
}