Add some JS and CSS resources.

This commit is contained in:
James Cole 2018-12-23 07:35:15 +01:00
parent 36c4a30fe3
commit 10da45edce
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
5 changed files with 4966 additions and 9308 deletions

14234
package-lock.json generated

File diff suppressed because it is too large Load Diff

1
package.json Normal file → Executable file
View File

@ -10,6 +10,7 @@
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"@babel/preset-react": "^7.0.0",
"axios": "^0.18",
"babel-preset-react": "^6.23.0",
"bootstrap": "^4.0.0",

View File

@ -1,3 +1,4 @@
{
"/js/app.js": "/js/app.js"
}
"/js/app.js": "/js/app.js",
"/css/app.css": "/css/app.css"
}

20
resources/sass/_variables.scss vendored Normal file
View File

@ -0,0 +1,20 @@
// Body
$body-bg: #f8fafc;
// Typography
$font-family-sans-serif: "Nunito", sans-serif;
$font-size-base: 0.9rem;
$line-height-base: 1.6;
// Colors
$blue: #3490dc;
$indigo: #6574cd;
$purple: #9561e2;
$pink: #f66D9b;
$red: #e3342f;
$orange: #f6993f;
$yellow: #ffed4a;
$green: #38c172;
$teal: #4dc0b5;
$cyan: #6cb2eb;

14
resources/sass/app.scss vendored Normal file
View File

@ -0,0 +1,14 @@
// Fonts
@import url('https://fonts.googleapis.com/css?family=Nunito');
// Variables
@import 'variables';
// Bootstrap
@import '~bootstrap/scss/bootstrap';
.navbar-laravel {
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}