Skip to content

Commit 7886dce

Browse files
authored
Merge pull request #31 from laravelcm/christmas-design
✨ ajout du mode noel
2 parents ff3bcdb + 459e161 commit 7886dce

File tree

20 files changed

+287
-36
lines changed

20 files changed

+287
-36
lines changed

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
"laravel-mix": "^6.0.38",
2121
"lodash": "^4.17.19",
2222
"postcss": "^8.2.9",
23+
"postcss-loader": "^6.2.1",
24+
"postcss-preset-env": "^7.0.1",
2325
"prettier": "^2.3.1",
2426
"prettier-standard": "^16.4.1"
2527
},

postcss.config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
plugins: [
3+
require('tailwindcss'),
4+
require('autoprefixer'),
5+
require('postcss-preset-env')
6+
]
7+
}

public/css/app.css

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

public/images/guirlande1.png

97 KB
Loading

public/images/guirlande2.png

94.6 KB
Loading

public/images/guirlande3.png

50.3 KB
Loading

public/js/app.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/mix-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"/js/app.js": "/js/app.js?id=9abd09e80a5426001802",
3-
"/css/app.css": "/css/app.css?id=f51b72c7337e6b57d1c3"
2+
"/js/app.js": "/js/app.js?id=24a959e67d1d9798dd27",
3+
"/css/app.css": "/css/app.css?id=3d37c76c8d0d8755f341"
44
}

resources/css/app.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
@import "torchlight.css";
1313
@import "toc.css";
1414
@import "media-library.css";
15+
/*@import "rain.css";*/
16+
@import "christmas.css";
1517

1618
:root {
1719
--brand-laravel: #FF2D20;

resources/css/base.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
html, body {
2+
height: 100%;
3+
}
4+
15
input {
26
width: 100%;
37
}

0 commit comments

Comments
 (0)