Hi all!
Just a little (possibly) bug-report: The frontend Edit buttons use a FontAwesome Icon, specifically .fa-edit / .fa-pencil-square-o
To make the Icon show however, I had to add the font-family via css, as it tries to use the default font otherwise. I'm not sure if this is an oversight or intended, but maybe this helps others or the devs can implement it!
For the sake of completeness, here's the css:
.fa-edit:before,
.fa-pencil-square-o:before {
font-family: FontAwesome;
}