mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
Add codeicon font for autocompletion icons
Signed-off-by: Julius Volz <julius.volz@gmail.com>
This commit is contained in:
parent
ebb468cedf
commit
6ff7857313
|
@ -30,3 +30,9 @@
|
||||||
color: var(--mantine-color-white);
|
color: var(--mantine-color-white);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Font used for autocompletion item icons. */
|
||||||
|
@font-face {
|
||||||
|
font-family: "codicon";
|
||||||
|
src: local("codicon"), url(./fonts/codicon.ttf) format("truetype");
|
||||||
|
}
|
||||||
|
|
BIN
web/ui/mantine-ui/src/fonts/codicon.ttf
Normal file
BIN
web/ui/mantine-ui/src/fonts/codicon.ttf
Normal file
Binary file not shown.
|
@ -4,6 +4,7 @@ import App from "./App.tsx";
|
||||||
import { Settings, SettingsContext } from "./settings.ts";
|
import { Settings, SettingsContext } from "./settings.ts";
|
||||||
import store from "./state/store.ts";
|
import store from "./state/store.ts";
|
||||||
import { Provider } from "react-redux";
|
import { Provider } from "react-redux";
|
||||||
|
import "./fonts/codicon.ttf";
|
||||||
|
|
||||||
// Declared/defined in public/index.html, value replaced by Prometheus when serving bundle.
|
// Declared/defined in public/index.html, value replaced by Prometheus when serving bundle.
|
||||||
declare const GLOBAL_CONSOLES_LINK: string;
|
declare const GLOBAL_CONSOLES_LINK: string;
|
||||||
|
|
Loading…
Reference in a new issue