Skip to content

Commit 0e6042f

Browse files
driesvintsStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent 998cd09 commit 0e6042f

File tree

5 files changed

+8
-13
lines changed

5 files changed

+8
-13
lines changed

resources/assets/js/app.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
/**
32
* First we will load all of this project's JavaScript dependencies which
43
* includes Vue and other libraries. It is a great starting point when
@@ -18,5 +17,5 @@ window.Vue = require('vue');
1817
Vue.component('example-component', require('./components/ExampleComponent.vue'));
1918

2019
const app = new Vue({
21-
el: '#app'
20+
el: '#app',
2221
});

resources/assets/js/bootstrap.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
window._ = require('lodash');
32

43
/**

resources/assets/sass/_variables.scss

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
// Body
32
$body-bg: #f5f8fa;
43

@@ -10,15 +9,15 @@ $panel-default-border: $laravel-border-color;
109
$panel-inner-border: $laravel-border-color;
1110

1211
// Brands
13-
$brand-primary: #3097D1;
12+
$brand-primary: #3097d1;
1413
$brand-info: #8eb4cb;
1514
$brand-success: #2ab27b;
1615
$brand-warning: #cbb956;
1716
$brand-danger: #bf5329;
1817

1918
// Typography
20-
$icon-font-path: "~bootstrap-sass/assets/fonts/bootstrap/";
21-
$font-family-sans-serif: "Raleway", sans-serif;
19+
$icon-font-path: '~bootstrap-sass/assets/fonts/bootstrap/';
20+
$font-family-sans-serif: 'Raleway', sans-serif;
2221
$font-size-base: 14px;
2322
$line-height-base: 1.6;
2423
$text-color: #636b6f;

resources/assets/sass/app.scss

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
21
// Fonts
3-
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600");
2+
@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,600');
43

54
// Variables
6-
@import "variables";
5+
@import 'variables';
76

87
// Bootstrap
9-
@import "~bootstrap-sass/assets/stylesheets/bootstrap";
8+
@import '~bootstrap-sass/assets/stylesheets/bootstrap';

webpack.mix.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,4 @@ let mix = require('laravel-mix');
1111
|
1212
*/
1313

14-
mix.js('resources/assets/js/app.js', 'public/js')
15-
.sass('resources/assets/sass/app.scss', 'public/css');
14+
mix.js('resources/assets/js/app.js', 'public/js').sass('resources/assets/sass/app.scss', 'public/css');

0 commit comments

Comments
 (0)