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
2f4ddb8e
Commit
2f4ddb8e
authored
7 years ago
by
lucascono
Browse files
Options
Download
Email Patches
Plain Diff
Fix the min breakpoint in media-breakpoint-between
parent
cd3507ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scss/mixins/_breakpoints.scss
+1
-1
scss/mixins/_breakpoints.scss
with
1 addition
and
1 deletion
+1
-1
scss/mixins/_breakpoints.scss
+
1
-
1
View file @
2f4ddb8e
...
...
@@ -78,7 +78,7 @@
// Media that spans multiple breakpoint widths.
// Makes the @content apply between the min and max breakpoints
@mixin
media-breakpoint-between
(
$lower
,
$upper
,
$breakpoints
:
$grid-breakpoints
)
{
$min
:
breakpoint-m
ax
(
$lower
,
$breakpoints
);
$min
:
breakpoint-m
in
(
$lower
,
$breakpoints
);
$max
:
breakpoint-max
(
$upper
,
$breakpoints
);
@media
(
min-width
:
$min
)
and
(
max-width
:
$max
)
{
...
...
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