commit | 0c84fdb8df5967dc59b950b043a0d860a303beac | [log] [tgz] |
---|---|---|
author | Carey Metcalfe <pR0Ps.CM@gmail.com> | Mon Sep 29 09:51:00 2014 -0400 |
committer | pR0Ps <pR0Ps.CM@gmail.com> | Tue Sep 30 18:54:57 2014 -0400 |
tree | d4944da3addef685401e1f6fa2f7b96d12501185 | |
parent | 5fd3a0ffa8248701a661d88f8975878342b1b7ac [diff] |
Floor the min-width CSS media query to remove decimals
diff --git a/static/css/style.less b/static/css/style.less index 95c6dd8..468102f 100644 --- a/static/css/style.less +++ b/static/css/style.less
@@ -18,7 +18,8 @@ @content_size: 640px; @horiz_pad: 40px; -@min_screen: ((@content_size + @horiz_pad * 2) * 1.32); +//The minimum size the screen can be without scaling the main content +@min_screen: floor(((@content_size + @horiz_pad * 2) * 1.33)); body { margin: 0;