Merge pull request #601 from dod-ccpo/fix-ie10-show-to

Fix widths on show task order page
This commit is contained in:
patricksmithdds 2019-02-05 10:32:18 -05:00 committed by GitHub
commit 7ecee0b7ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -117,7 +117,7 @@
}
@include ie-only {
width: 100%;
width: calc(100% - 35rem);
}
.task-order-next-steps__panel-head {
@ -131,6 +131,10 @@
padding: ($gap * 4) ($gap * 2);
margin: 0;
@include ie-only {
width: 100%;
}
.task-order-next-steps__icon {
width: 8%;
padding: $gap $gap 0 0;
@ -145,9 +149,6 @@
.task-order-next-steps__text {
width: 60%;
@include ie-only {
width: 100%
}
}
.task-order-next-steps__action {
@ -159,7 +160,11 @@
}
.task-order-next-steps__heading {
h4 {
@include ie-only {
width: 100%;
}
margin: $gap $gap 0 0;
}
}