mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-05-04 13:12:10 +00:00
* Add ABC ROM fonts from Comfy.org * Import ABC ROM fonts CSS in main.ts * Move font import to style.css * Add ABC ROM fonts as CSS variables in @theme * Add Inter font .woff2 files * Replace ABC ROM with Inter font declarations * Update CSS variables to use Inter font * Remove unused ABC ROM font files * Autoformat style.css * Remove redundant font declarations
18 lines
366 B
CSS
18 lines
366 B
CSS
/* Inter Font Family */
|
|
|
|
@font-face {
|
|
font-family: 'Inter';
|
|
src: url('/fonts/inter-latin-normal.woff2') format('woff2');
|
|
font-weight: 100 900;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Inter';
|
|
src: url('/fonts/inter-latin-italic.woff2') format('woff2');
|
|
font-weight: 100 900;
|
|
font-style: italic;
|
|
font-display: swap;
|
|
}
|