Skip to content

Commit

Permalink
Fix background-size issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayman Habeb committed Apr 12, 2017
1 parent da09485 commit 6cbe253
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions widget/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -185,15 +185,15 @@
element.attr("style", 'background-color:white');
}
element.css({
'background-size': 'cover'
'background-size': 'cover !important'
});
});
}
else {
img = "";
element.attr("style", 'background-color:white');
element.css({
'background-size': 'cover'
'background-size': 'cover !important'
});
}
});
Expand Down

0 comments on commit 6cbe253

Please sign in to comment.