Skip to content

Commit

Permalink
Well last paragraph margin
Browse files Browse the repository at this point in the history
  • Loading branch information
nicomollet committed Sep 29, 2017
1 parent fbad565 commit feacb60
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
5 changes: 5 additions & 0 deletions scss/helpers/_common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -407,4 +407,9 @@ body.page-template-fullwidthnotitle{
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}

// Last paragraph
.well *:last-child{
margin-bottom: 0;
}
17 changes: 12 additions & 5 deletions scss/helpers/_woocommerce_checkout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit feacb60

Please sign in to comment.