fix conflicts

This commit is contained in:
Taylor Otwell
2019-05-06 08:30:56 -05:00
12 changed files with 44 additions and 10 deletions

3
resources/js/app.js vendored
View File

@@ -1,4 +1,3 @@
/**
* First we will load all of this project's JavaScript dependencies which
* includes Vue and other libraries. It is a great starting point when
@@ -29,5 +28,5 @@ Vue.component('example-component', require('./components/ExampleComponent.vue').
*/
const app = new Vue({
el: '#app'
el: '#app',
});

View File

@@ -1,4 +1,3 @@
window._ = require('lodash');
/**

View File

@@ -1,9 +1,8 @@
// Body
$body-bg: #f8fafc;
// Typography
$font-family-sans-serif: "Nunito", sans-serif;
$font-family-sans-serif: 'Nunito', sans-serif;
$font-size-base: 0.9rem;
$line-height-base: 1.6;
@@ -11,7 +10,7 @@ $line-height-base: 1.6;
$blue: #3490dc;
$indigo: #6574cd;
$purple: #9561e2;
$pink: #f66D9b;
$pink: #f66d9b;
$red: #e3342f;
$orange: #f6993f;
$yellow: #ffed4a;

View File

@@ -1,4 +1,3 @@
// Fonts
@import url('https://fonts.googleapis.com/css?family=Nunito');