diff --git a/scss/helpers/_common.scss b/scss/helpers/_common.scss index 493d005..46e83ff 100644 --- a/scss/helpers/_common.scss +++ b/scss/helpers/_common.scss @@ -407,4 +407,9 @@ body.page-template-fullwidthnotitle{ -webkit-transform: rotate(359deg); transform: rotate(359deg); } +} + +// Last paragraph +.well *:last-child{ + margin-bottom: 0; } \ No newline at end of file diff --git a/scss/helpers/_woocommerce_checkout.scss b/scss/helpers/_woocommerce_checkout.scss index 1ebf731..c7179ff 100644 --- a/scss/helpers/_woocommerce_checkout.scss +++ b/scss/helpers/_woocommerce_checkout.scss @@ -48,13 +48,20 @@ form.checkout_coupon { margin-left: 0; } - #order_review.payment-fixed { - position: fixed; - top: 0; - z-index: 9; - box-shadow: 0 6px 2em rgba(#000,.2); + #order_review{ + @include transition(position ease .4s, background ease .4s, box-shadow ease .4s); + padding-bottom: floor(($grid-gutter-width / 2)); + padding-top: floor(($grid-gutter-width / 2)); + + &.payment-fixed{ + position: fixed; + top: 0; + z-index: 9; + box-shadow: 0 6px 2em rgba(#000,.2); + } } + .woocommerce-NoticeGroup{ @include make-md-column(12); }