Linting fixes.

This commit is contained in:
Christopher Charbonneau Wells 2017-08-22 13:16:35 -04:00
parent 0c5c3b7a2c
commit 2789234a92
7 changed files with 26 additions and 26 deletions

View File

@ -1,3 +1,3 @@
@import "../../../node_modules/bootstrap/scss/functions"; @import '../../../node_modules/bootstrap/scss/functions';
/* Baby Blotter site-wide custom functions. */ // Baby Blotter site-wide custom functions.

View File

@ -1 +1 @@
/* Baby Blotter site-wide custom functions. */ // Baby Blotter site-wide custom functions.

View File

@ -1,3 +1,3 @@
@import "../../../node_modules/bootstrap/scss/mixins"; @import '../../../node_modules/bootstrap/scss/mixins';
/* Baby Blotter site-wide custom mixins. */ // Baby Blotter site-wide custom mixins.

View File

@ -1,4 +1,4 @@
@import "functions"; @import 'functions';
@import "../../../node_modules/bootstrap/scss/variables"; @import '../../../node_modules/bootstrap/scss/variables';
/* Baby Blotter site-wide custom variables. */ // Baby Blotter site-wide custom variables. */

View File

@ -1,7 +1,7 @@
@import "functions"; @import 'functions';
@import "variables"; @import 'variables';
@import "mixins"; @import 'mixins';
@import "global"; @import 'global';
@import "../../../node_modules/bootstrap/scss/bootstrap"; @import '../../../node_modules/bootstrap/scss/bootstrap';
@import "../../../**/static/scss/*.scss"; @import '../../../**/static/scss/*';

View File

@ -1,15 +1,15 @@
#view-timer-detail { #view-timer-detail {
#timer-status { #timer-status {
font-size: $display4-size; font-size: $display4-size;
font-weight: $display4-weight; font-weight: $display4-weight;
} }
} }
@include media-breakpoint-up(sm) { @include media-breakpoint-up(sm) {
#view-timer-detail { #view-timer-detail {
#timer-status { #timer-status {
font-size: $display1-size; font-size: $display1-size;
font-weight: $display1-weight; font-weight: $display1-weight;
}
} }
}
} }

View File

@ -1,5 +1,5 @@
.card-diaperchange { .card-diaperchange {
.progress { .progress {
height: $progress-height * 2; height: $progress-height * 2;
} }
} }