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

Unified Diff: scss/_variables.scss

Issue 29539827: Noissue - Added configurable breakpoints and phablet widths to grid (Closed) Base URL: https://hg.adblockplus.org/website-defaults
Patch Set: Renamed mobile to phone Created Sept. 11, 2017, 4:01 p.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
« no previous file with comments | « scss/_grid.scss ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scss/_variables.scss
===================================================================
--- a/scss/_variables.scss
+++ b/scss/_variables.scss
@@ -75,17 +75,20 @@
$large-space: 4em !default;
$medium-space: 2em !default;
$small-space: 1em !default;
/* Breakpoints
******************************************************************************/
-$tablet-breakpoint: 768px;
-$desktop-breakpoint: 992px;
+$phone-breakpoint: 320px !default;
+$phablet-breakpoint: 576px !default;
+$tablet-breakpoint: 768px !default;
+$desktop-breakpoint: 992px !default;
/* Container widths
******************************************************************************/
-$mobile-width: 540px !default;
+$phone-width: auto !default;
+$phablet-width: 540px !default;
$tablet-width: 720px !default;
$desktop-width: 960px !default;
« no previous file with comments | « scss/_grid.scss ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld