mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2026-07-19 06:54:53 +00:00
Fix: Icons not displayed on oauth/authorize.php (#4232)
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.
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user