mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-28 10:10:24 +00:00
added @content directive to media-breakpoint-only mixin for min and max cases
This commit is contained in:
parent
c4b3d81887
commit
1da730c67f
1 changed files with 6 additions and 2 deletions
|
|
@ -98,8 +98,12 @@
|
|||
@content;
|
||||
}
|
||||
} @else if $max == null {
|
||||
@include media-breakpoint-up($name)
|
||||
@include media-breakpoint-up($name) {
|
||||
@content;
|
||||
}
|
||||
} @else if $min == null {
|
||||
@include media-breakpoint-down($name)
|
||||
@include media-breakpoint-down($name) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue