aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2014-10-20 13:26:42 -0700
committerChris Rebert <[email protected]>2014-10-20 13:26:42 -0700
commita096c3f6f66c3ce5d0517ef712479a9db22e6beb (patch)
tree56e8492491f0a30abfe8f208624b43dc7ea5f7f8
parent8a6a253355ab1d26865bfbfffaa2a194e173a3aa (diff)
parentb43a7a932e0797488bb0bc4b48b76f343a75d15f (diff)
downloadbootstrap-a096c3f6f66c3ce5d0517ef712479a9db22e6beb.tar.xz
bootstrap-a096c3f6f66c3ce5d0517ef712479a9db22e6beb.zip
Merge pull request #14836 from lipis/double
Removed double parentheses from expressions
-rw-r--r--less/variables.less6
1 files changed, 3 insertions, 3 deletions
diff --git a/less/variables.less b/less/variables.less
index 86d53e629..5610236f3 100644
--- a/less/variables.less
+++ b/less/variables.less
@@ -322,17 +322,17 @@
//## Define the maximum width of `.container` for different screen sizes.
// Small screen / tablet
-@container-tablet: ((720px + @grid-gutter-width));
+@container-tablet: (720px + @grid-gutter-width);
//** For `@screen-sm-min` and up.
@container-sm: @container-tablet;
// Medium screen / desktop
-@container-desktop: ((940px + @grid-gutter-width));
+@container-desktop: (940px + @grid-gutter-width);
//** For `@screen-md-min` and up.
@container-md: @container-desktop;
// Large screen / wide desktop
-@container-large-desktop: ((1140px + @grid-gutter-width));
+@container-large-desktop: (1140px + @grid-gutter-width);
//** For `@screen-lg-min` and up.
@container-lg: @container-large-desktop;