SCSS: Fix breakpoint mobile naming
From "m" to "mob"
This commit is contained in:
@@ -27,7 +27,7 @@
|
||||
margin: 0 auto;
|
||||
padding: 0 16px;
|
||||
|
||||
@include breakpoint (m) {
|
||||
@include breakpoint (mob) {
|
||||
padding: 0 24px;
|
||||
}
|
||||
@include breakpoint (sm) {
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
|
||||
// Reponsive breakpoints
|
||||
@mixin breakpoint ($size) {
|
||||
@if ($size == m) {
|
||||
@if ($size == mob) {
|
||||
@media (min-width: $screen-mob) { @content; }
|
||||
}
|
||||
@else if ($size == xs) {
|
||||
|
||||
Reference in New Issue
Block a user