Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
a096c3f6
Commit
a096c3f6
authored
10 years ago
by
Chris Rebert
Browse files
Options
Download
Plain Diff
Merge pull request #14836 from lipis/double
Removed double parentheses from expressions
parents
8a6a2533
b43a7a93
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
less/variables.less
+3
-3
less/variables.less
with
3 additions
and
3 deletions
+3
-3
less/variables.less
+
3
-
3
View file @
a096c3f6
...
@@ -322,17 +322,17 @@
...
@@ -322,17 +322,17 @@
//## Define the maximum width of `.container` for different screen sizes.
//## Define the maximum width of `.container` for different screen sizes.
// Small screen / tablet
// Small screen / tablet
@container-tablet:
(
(720px + @grid-gutter-width)
)
;
@container-tablet: (720px + @grid-gutter-width);
//** For `@screen-sm-min` and up.
//** For `@screen-sm-min` and up.
@container-sm: @container-tablet;
@container-sm: @container-tablet;
// Medium screen / desktop
// Medium screen / desktop
@container-desktop:
(
(940px + @grid-gutter-width)
)
;
@container-desktop: (940px + @grid-gutter-width);
//** For `@screen-md-min` and up.
//** For `@screen-md-min` and up.
@container-md: @container-desktop;
@container-md: @container-desktop;
// Large screen / wide 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.
//** For `@screen-lg-min` and up.
@container-lg: @container-large-desktop;
@container-lg: @container-large-desktop;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment