Index: static/scss/content/_reset.scss |
=================================================================== |
--- a/static/scss/content/_reset.scss |
+++ b/static/scss/content/_reset.scss |
@@ -81,25 +81,36 @@ |
// Remove image borders in IE<10 |
a, img |
{ |
border:none; |
outline:none; |
} |
+// Simulate collapsable top-margin on first paragraph after page heading |
ire
2017/07/06 10:31:38
I added this comment here until we decide to revis
juliandoucette
2017/07/06 13:15:48
Acknowledged.
|
h2 + .row, |
h1 + .row, |
h2 + hr + .row, |
h1 + hr + .row |
{ |
margin-top: -$sm; |
} |
.section |
{ |
- margin: $xl 0; |
+ margin-bottom: $xl; |
+ |
+ @media (max-width: $tablet-breakpoint) |
+ { |
+ margin-bottom: $md; |
+ } |
} |
.section .section |
{ |
- margin: $lg 0; |
+ margin-bottom: $lg; |
+ |
+ @media (max-width: $tablet-breakpoint) |
+ { |
+ margin-bottom: $md; |
+ } |
} |