Skip to content

Commit eb50995

Browse files
committed
Build fix's for notifications implementation
1 parent 8db2c4c commit eb50995

File tree

5 files changed

+3
-7
lines changed

5 files changed

+3
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"start": "node server.js",
55
"dev": "cross-env APPMODE=development webpack-dev-server",
66
"dev-https": "cross-env APPMODE=development webpack-dev-server --https",
7-
"build": "webpack --mode=${APPMODE:-production} --env.config=${APPENV:-dev}",
7+
"build": "webpack --mode=${APPMODE:-development} --env.config=${APPENV:-dev}",
88
"analyze": "webpack --mode=production --env.analyze=true",
99
"lint": "eslint src --ext js",
1010
"format": "prettier --write \"./**\"",

src/assets/icons/icon-select.png

14.7 KB
Loading

src/assets/icons/loader.gif

8.61 KB
Loading

src/components/Dropdown/Dropdown.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165
right: 11px;
166166
top: 50%;
167167
margin-top: -7px;
168-
background: url("./icon-select.png") left top no-repeat;
168+
background: url("../../assets/icons/icon-select.png") left top no-repeat;
169169
background-size: 10px 14px;
170170
z-index:2;
171171
}

src/styles/_fonts.scss

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,7 @@
44
@mixin font-family($font-name, $font-weight, $font-style, $font-url, $font-file) {
55
@font-face {
66
font-family: '#{$font-name}';
7-
src: url('#{$font-url}#{$font-file}.eot');
8-
src: url('#{$font-url}#{$font-file}.eot?#iefix') format('embedded-opentype'),
9-
url('#{$font-url}#{$font-file}.woff') format('woff'),
10-
url('#{$font-url}#{$font-file}.ttf') format('truetype'),
11-
url('#{$font-url}#{$font-file}.svg##{$font-name}') format('svg');
7+
src: url('#{$font-url}#{$font-file}.svg##{$font-name}') format('svg');
128
font-weight: $font-weight;
139
font-style: $font-style;
1410
}

0 commit comments

Comments
 (0)