+
diff --git a/src/scss/styles.scss b/src/scss/styles.scss
index 55f57d0229..3ce3ca6b9d 100644
--- a/src/scss/styles.scss
+++ b/src/scss/styles.scss
@@ -289,3 +289,14 @@ app-login {
display: block;
}
}
+
+#duo-frame {
+ background: url('../images/loading.svg') 0 0 no-repeat;
+ height: 330px;
+
+ iframe {
+ width: 100%;
+ height: 100%;
+ border: none;
+ }
+}
diff --git a/webpack.config.js b/webpack.config.js
index b9257fe1be..190c06d90e 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -38,15 +38,14 @@ const moduleRules = [
},
{
test: /\.(jpe?g|png|gif|svg)$/i,
- exclude: /.*(fontawesome-webfont|glyphicons-halflings-regular)\.svg/,
+ exclude: /.*(fontawesome-webfont)\.svg/,
use: [{
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'images/',
- publicPath: './images/',
- },
- }],
+ }
+ }]
},
{
test: /\.scss$/,