Update member header layout

This commit is contained in:
Luis Cielak
2018-07-31 16:04:17 -04:00
committed by richard-dds
parent 727680c31f
commit cdd442c266
3 changed files with 55 additions and 10 deletions

View File

@@ -33,3 +33,4 @@
@import 'sections/request_approval';
@import 'sections/projects_list';
@import 'sections/project_edit';
@import 'sections/member_edit';

View File

@@ -0,0 +1,37 @@
.member-card {
@include grid-row;
padding: $gap*2;
justify-content: space-between;
dl {
margin: 0;
> div {
margin-bottom: $gap;
}
}
dt {
font-weight: normal;
color: $color-gray;
}
dd {
display: inline;
}
.member-card__header {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.member-card__heading {
margin: 0;
@include h2;
}
.member-card__details {
text-align: right;
}
}