Skip to content

Commit f865919

Browse files
committed
Fix security packages update
1 parent 369678b commit f865919

File tree

5 files changed

+20
-3054
lines changed

5 files changed

+20
-3054
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
.idea/
2-
node_modules/
2+
node_modules/
3+
package-lock.json
4+
yarn.lock

Gruntfile.js

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
module.exports = function( grunt ) {
22
var globalOptions = {
3-
browsers: [
4-
'> 1%',
5-
'last 3 versions',
6-
'ie 9',
7-
'ie 10',
8-
'ie 11'
9-
],
103
less: {
114
srcPath: 'less/',
125
srcFiles: [
@@ -107,7 +100,7 @@ module.exports = function( grunt ) {
107100
options: {
108101
map: false,
109102
processors: [
110-
require( 'autoprefixer' )( { browsers: globalOptions.browsers } )
103+
require( 'autoprefixer' )()
111104
]
112105
},
113106
files: [
@@ -146,7 +139,7 @@ module.exports = function( grunt ) {
146139
lib: {
147140
options: {
148141
processors: [
149-
require( 'autoprefixer' )( { browsers: globalOptions.browsers } )
142+
require( 'autoprefixer' )()
150143
],
151144
map: false
152145
}

css/style.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -1477,7 +1477,7 @@ h6 {
14771477
padding-left: 16px;
14781478
}
14791479
#footer {
1480-
background-color: #333333;
1480+
background-color: hsl(0, 0%, 20%);
14811481
color: #777;
14821482
font-size: 14px;
14831483
line-height: 1.7;
@@ -1528,7 +1528,7 @@ h6 {
15281528
margin-bottom: 10px;
15291529
}
15301530
.footer-widget-area {
1531-
background-color: #383838;
1531+
background-color: hsl(0, 0%, 22%);
15321532
padding: 45px 0 15px 0;
15331533
}
15341534
.footer-widget-area .widget {

0 commit comments

Comments
 (0)