Merge pull request #1088 from reeno/patch-2

fixed width Font Awesome symbols
This commit is contained in:
Michael Teeuw 2017-11-25 12:15:27 +01:00 committed by GitHub
commit 237e9b7191
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -150,7 +150,7 @@ Module.register("calendar", {
for(var i = 0; i < symbols.length; i++) {
var symbol = document.createElement("span");
symbol.className = "fa fa-" + symbols[i];
symbol.className = "fa fa-fw fa-" + symbols[i];
if(i > 0){
symbol.style.paddingLeft = "5px";
}