Skip to content

Commit

Permalink
Fix: Icons not displayed on oauth/authorize.php (#4232)
Browse files Browse the repository at this point in the history
OAuth Authorization page did not show icons because of relative path.
As other fonts are included with an absolute path this should be fine here, too.
  • Loading branch information
weyhmueller committed Aug 15, 2021
1 parent 2dfcfd1 commit 6dcd7bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/web/css/build/013-bootstrap-icons.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@font-face {
font-family: "bootstrap-icons";
src: url("../../fonts/bootstrap-icons.woff2?856008caa5eb66df68595e734e59580d") format("woff2"),
url("../../fonts/bootstrap-icons.woff?856008caa5eb66df68595e734e59580d") format("woff");
src: url("/fonts/bootstrap-icons.woff2?856008caa5eb66df68595e734e59580d") format("woff2"),
url("/fonts/bootstrap-icons.woff?856008caa5eb66df68595e734e59580d") format("woff");
}

[class^="bi-"]::before,
Expand Down

0 comments on commit 6dcd7bb

Please sign in to comment.