Skip to content
This repository was archived by the owner on Sep 5, 2017. It is now read-only.

Commit 14aae55

Browse files
authored
Move flatly to app.css (orgmanager#205)
1 parent 5ed692c commit 14aae55

File tree

11 files changed

+4658
-9
lines changed

11 files changed

+4658
-9
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,3 @@ Homestead.yaml
1010
.env.*
1111
!.env.example
1212
composer.lock
13-
yarn.lock

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
99
},
1010
"devDependencies": {
11-
"bootstrap-sass": "^3.3.7",
1211
"cross-env": "^3.2.3",
1312
"laravel-mix": "^0.8.3",
1413
"lodash": "^4.17.4"

public/css/app.css

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/assets/css/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
app.css
2+
tmp.css
File renamed without changes.

resources/assets/sass/app.scss

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,3 @@
44

55
// Variables
66
@import "variables";
7-
8-
// Bootstrap
9-
@import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap";

resources/views/home.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
<!-- Styles -->
1616
<link href="{{ url('/css/home.css') }}" rel="stylesheet">
17-
<link href="{{ url('/css/flatty.min.css') }}" rel="stylesheet">
17+
<link href="{{ url('/css/app.css') }}" rel="stylesheet">
1818
<link href="{{ url('/css/sweetalert.css') }}" rel="stylesheet">
1919
@include('layouts.code.head')
2020
</head>

resources/views/join.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet" type="text/css">
1212
<!-- Styles -->
1313
<link href="{{ url('/css/join.css') }}" rel="stylesheet">
14-
<link href="{{ url('/css/flatty.min.css') }}" rel="stylesheet">
14+
<link href="{{ url('/css/app.css') }}" rel="stylesheet">
1515
<link href="{{ url('/css/sweetalert.css') }}" rel="stylesheet">
1616
@include('layouts.code.head')
1717
<script>

resources/views/layouts/app.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<title>{{ config('app.name', 'Laravel') }}</title>
1212
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
1313
<!-- Styles -->
14-
<link href="{{ url('/css/flatty.min.css') }}" rel="stylesheet">
14+
<link href="{{ url('/css/app.css') }}" rel="stylesheet">
1515
<link href="https://cdnjs.cloudflare.com/ajax/libs/octicons/4.4.0/font/octicons.min.css" rel="stylesheet">
1616
<link href="{{ url('/css/bootstrap-responsive.min.css') }}" rel="stylesheet">
1717
<link href="{{ url('/css/bootstrap-social.css') }}" rel="stylesheet">

webpack.mix.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,8 @@ const { mix } = require('laravel-mix');
1212
*/
1313

1414
mix.js('resources/assets/js/app.js', 'public/js')
15-
.sass('resources/assets/sass/app.scss', 'public/css');
15+
.sass('resources/assets/sass/app.scss', 'public/css')
16+
.styles([
17+
'public/css/app.css',
18+
'resources/assets/css/flatly.css',
19+
], 'public/css/app.css');

0 commit comments

Comments
 (0)