Skip to content

Commit

Permalink
fix: metadata step glyphs (#1213)
Browse files Browse the repository at this point in the history
Closes: eclipse-pass/main#704
Closes: eclipse-pass/main#705

For some unknown reason the FontAwesome glyphs aren't rendering any more. This moves to using unicode chars instead.
  • Loading branch information
jaredgalanis authored Sep 20, 2023
1 parent 37923ad commit f25f4a8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/styles/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -282,16 +282,16 @@ td {
font-style: normal;
}
.glyphicon-plus-sign:before {
content: '\f067';
content: '+';
}
.glyphicon-minus-sign:before {
content: '\f068';
content: '';
}
.glyphicon-chevron-up:before {
content: '\f077';
content: '\22c0';
}
.glyphicon-chevron-down:before {
content: '\f078';
content: '\22c1';
}
.glyphicon-info-sign:before {
content: '\f05a';
Expand Down

0 comments on commit f25f4a8

Please sign in to comment.