mirror of
https://github.com/CoderSherlock/CoderSherlock.github.io.git
synced 2026-06-13 08:08:10 -07:00
Updated to new theme of TeXt
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
@mixin media-breakpoint-down($name, $breakpoints: default) {
|
||||
@if $breakpoints == default {
|
||||
$breakpoints: $responsive;
|
||||
}
|
||||
@media (max-width: map-get($breakpoints, $name) - 1) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin media-breakpoint-up($name, $breakpoints: default) {
|
||||
@if $breakpoints == default {
|
||||
$breakpoints: $responsive;
|
||||
}
|
||||
@media (min-width: map-get($breakpoints, $name)) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user