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