Skip to content

Commit

Permalink
Merge branch 'release/4.1.2'
Browse files Browse the repository at this point in the history
* release/4.1.2:
  compiling assets
  wip
  • Loading branch information
austintoddj committed Feb 11, 2019
2 parents 34a11c9 + 3e4c7ce commit 2cb6867
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 16 deletions.
1 change: 0 additions & 1 deletion public/app.js

This file was deleted.

2 changes: 1 addition & 1 deletion public/app.css → public/css/app.css

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions public/js/app.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions public/js/app.js.map

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"/app.js": "/app.js?id=a1bbfa8127d35ee1a71b",
"/app.css": "/app.css?id=2586c05a868097189501",
"/js/app.js": "/js/app.js?id=cab446fe67c77f318dd0",
"/css/app.css": "/css/app.css?id=bda34711dea8821a4299",
"/js/app.js.map": "/js/app.js.map?id=80a9c6938a70e635658a",
"/favicon.png": "/favicon.png?id=39d853e8c2bdbc38fde3"
}
2 changes: 1 addition & 1 deletion resources/sass/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Typography
$font-family-sans-serif: "Nunito", sans-serif;
$font-family-serif: "Merriweather", serif;
$fa-font-path: "fonts" !default;
$fa-font-path: "../fonts" !default;
$font-size-base: 0.9rem;
$line-height-base: 1.6;

Expand Down
4 changes: 2 additions & 2 deletions resources/views/layouts/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<link rel="stylesheet" href="{{ url('https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/styles/github.min.css') }}">

<!-- Style sheets -->
<link rel="stylesheet" type="text/css" href="{{ mix('app.css', 'vendor/canvas') }}">
<link rel="stylesheet" type="text/css" href="{{ mix('css/app.css', 'vendor/canvas') }}">

<!-- Additional style sheets -->
@stack('styles')
Expand All @@ -29,7 +29,7 @@
</div>

<!-- Application scripts -->
<script type="text/javascript" src="{{ mix('app.js', 'vendor/canvas') }}"></script>
<script type="text/javascript" src="{{ mix('js/app.js', 'vendor/canvas') }}"></script>

<!-- Additional scripts -->
@stack('scripts')
Expand Down
14 changes: 7 additions & 7 deletions stubs/views/blog/partials/styles.stub
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
}

a, .btn-link {
color: #3490dc;
text-decoration: none !important;
color: #3490dc;
text-decoration: none !important;
}

.btn-outline-primary {
Expand All @@ -75,16 +75,16 @@
}

.serif {
font-family: "Merriweather", serif;
font-family: "Merriweather", serif;
}

.sans-serif {
font-family: "Nunito", sans-serif;
font-family: "Nunito", sans-serif;
}

.logo {
font-family: "Merriweather", serif;
font-size: 20px;
font-family: "Merriweather", serif;
font-size: 20px;
}

.logo span {
Expand Down Expand Up @@ -212,7 +212,7 @@
line-height: 1.6;
}

.btn-primary:hover {
.btn-primary:hover, .btn-outline-primary:hover {
background-color: #227dc7;
border-color: #2176bd;
}
Expand Down
6 changes: 4 additions & 2 deletions webpack.mix.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ mix
}
})
.setPublicPath('public')
.js('resources/js/app.js', 'public')
.sass('resources/sass/app.scss', 'public')
.setResourceRoot('../')
.js('resources/js/app.js', 'public/js')
.sass('resources/sass/app.scss', 'public/css')
.copy('resources/favicon.png', 'public')
.sourceMaps()
.version();

0 comments on commit 2cb6867

Please sign in to comment.