Styles for adjusted request review screen

This commit is contained in:
Andrew Croce 2018-09-21 14:22:13 -04:00
parent 2dcc51c154
commit c0cf433b5e

View File

@ -33,12 +33,19 @@
} }
.request-approval__review { .request-approval__review {
.request-approval__review__heading {
border-top: 1px solid $color-gray-light;
padding-bottom: 0;
}
.action-group { .action-group {
margin-bottom: $gap * 6; margin-bottom: $gap * 6;
} }
} }
.approval-log { .approval-log,
.comment-log {
ol { ol {
list-style: none; list-style: none;
margin: 0; margin: 0;
@ -57,7 +64,8 @@
} }
} }
} }
.approval-log__log-item { .approval-log__log-item,
.comment-log__log-item {
display: flex; display: flex;
flex-direction: column-reverse; flex-direction: column-reverse;
justify-content: flex-end; justify-content: flex-end;
@ -66,12 +74,14 @@
flex-direction: row-reverse; flex-direction: row-reverse;
} }
.approval-log__log-item__header { .approval-log__log-item__header,
.comment-log__log-item__header {
@include h4; @include h4;
margin: 0 0 $gap 0; margin: 0 0 $gap 0;
} }
.approval-log__log-item__timestamp { .approval-log__log-item__timestamp,
.comment-log__log-item__timestamp {
@include h5; @include h5;
margin-right: $gap * 2; margin-right: $gap * 2;
color: $color-gray; color: $color-gray;
@ -105,5 +115,14 @@
textarea { textarea {
resize: vertical; resize: vertical;
} }
.internal-notes__add-comment__heading {
padding-bottom: 0;
border-top: 1px solid $color-gray-light;
}
.usa-input__title {
@include hide;
}
} }
} }