Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: static/scss/content/_reset.scss

Issue 29438582: Issue 5135 - Reduce font size and padding on smaller screens on acceptableads.com (Closed) Base URL: https://hg.adblockplus.org/web.acceptableads.com
Patch Set: Created May 16, 2017, 4:26 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: static/scss/content/_reset.scss
===================================================================
--- a/static/scss/content/_reset.scss
+++ b/static/scss/content/_reset.scss
@@ -86,20 +86,27 @@
outline:none;
}
h2 + .row,
h1 + .row,
h2 + hr + .row,
h1 + hr + .row
{
- margin-top: -$sm;
+ // Can't figure out why this is here, plus it was messing with some alignment — @Ire
+ // margin-top: -$sm;
juliandoucette 2017/05/16 19:07:34 Better to delete it and add comment on this line i
ire 2017/05/16 21:32:28 ACK
+
}
.section
{
margin: $xl 0;
+
+ @media screen and (max-width: $tablet-breakpoint)
+ {
+ margin: $md 0;
+ }
}
.section .section
{
margin: $lg 0;
}

Powered by Google App Engine
This is Rietveld