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

Unified Diff: includes/solutions/style.html

Issue 29453600: Issue 4961 - Fix card group field alignment on acceptableads.com (Closed) Base URL: https://hg.adblockplus.org/web.acceptableads.com
Patch Set: Implement .cards class, Fix alignment inn group-5, Minor fixes Created June 21, 2017, 7:41 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: includes/solutions/style.html
===================================================================
--- a/includes/solutions/style.html
+++ b/includes/solutions/style.html
@@ -1,15 +1,16 @@
<style>
.card-summary
{
height: 90px;
}
+
@media(min-width: 544px)
{
.card-summary
{
height: 140px;
}
}
@@ -34,9 +35,17 @@
.card.list
{
display: block;
width: 70%;
margin: 0 auto;
}
}
+@supports (display: grid)
+{
+ .card-footer .m-t-md
+ {
+ margin-top: 0 !important;
+ }
+}
+
</style>

Powered by Google App Engine
This is Rietveld