Move plugins to manifest, pin Docker version, add Makefile
- Add plugins.txt listing all plugins for reproducible installs - Add Makefile with setup/start/stop/install-plugins targets - Remove user/plugins/ from git tracking - Pin Docker image to 1.7.49.5-ls244 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,44 +0,0 @@
|
||||
// Breakpoints
|
||||
@mixin breakpoint($breakpoints, $media: all) {
|
||||
@each $breakpoint in $breakpoints {
|
||||
@if $breakpoint == large-desktop-range {
|
||||
@media only #{$media} and (min-width: $large-desktop-container) { @content; }
|
||||
}
|
||||
@else if $breakpoint == desktop-range {
|
||||
@media only #{$media} and (min-width: $desktop-container) and (max-width: $large-desktop-container - 0.062) { @content; }
|
||||
}
|
||||
@else if $breakpoint == tablet-range {
|
||||
@media only #{$media} and (min-width: $tablet-container) and (max-width: $desktop-container - 0.062) { @content; }
|
||||
}
|
||||
@else if $breakpoint == large-mobile-range {
|
||||
@media only #{$media} and (min-width: $large-mobile-container + 0.063) and (max-width: $tablet-container - 0.062) { @content; }
|
||||
}
|
||||
@else if $breakpoint == mini-nav-range {
|
||||
@media only #{$media} and (min-width: $tablet-container - 0.062) and (max-width: $large-desktop-container - 0.062) { @content; }
|
||||
}
|
||||
@else if $breakpoint == small-mobile-range {
|
||||
@media only #{$media} and (max-width: $large-mobile-container) { @content; }
|
||||
}
|
||||
@else if $breakpoint == no-mobile {
|
||||
@media only #{$media} and (min-width: $tablet-container) { @content; }
|
||||
}
|
||||
@else if $breakpoint == mobile-only {
|
||||
@media only #{$media} and (max-width: $tablet-container - 0.062) { @content; }
|
||||
}
|
||||
@else if $breakpoint == desktop-only {
|
||||
@media only #{$media} and (max-width: $desktop-container - 0.062) { @content; }
|
||||
}
|
||||
@else if $breakpoint == mobile-plus {
|
||||
@media only #{$media} and (min-width: $mobile-container - 0.062) { @content; }
|
||||
}
|
||||
@else if $breakpoint == tablet-plus {
|
||||
@media only #{$media} and (min-width: $tablet-container - 0.062) { @content; }
|
||||
}
|
||||
@else if $breakpoint == desktop-plus {
|
||||
@media only #{$media} and (min-width: $desktop-container - 0.062) { @content; }
|
||||
}
|
||||
@else if $breakpoint == large-desktop-plus {
|
||||
@media only #{$media} and (min-width: $large-desktop-container - 0.062) { @content; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user