Merge pull request #341 from dod-ccpo/ui/clean-up-audit-log

Initial audit log UI cleanup
This commit is contained in:
richard-dds
2018-09-26 11:33:03 -04:00
committed by GitHub
4 changed files with 60 additions and 12 deletions

View File

@@ -0,0 +1,22 @@
.audit-log__item {
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
.audit-log__item__timestamp {
@include small-label;
width: 6rem;
flex-shrink: 0;
margin-right: $gap * 2;
@include media($medium-screen) {
width: 12rem;
}
}
.audit-log__item__name {
margin-top: 0;
margin-bottom: $gap;
}
}