🐛 修复 动态加载 css 的示例中多了一个 「 } 」

This commit is contained in:
崮生 2020-04-02 14:36:47 +08:00
parent 76e66a29ea
commit 5c2fd025af
2 changed files with 3 additions and 1 deletions

View File

@ -18,7 +18,6 @@
url("${server}generate_fonts_dynamically.ttf?temp=true&font=优设标题黑&text=优设标题黑(直接改这里和前面的字体名看效果)") format("truetype"); url("${server}generate_fonts_dynamically.ttf?temp=true&font=优设标题黑&text=优设标题黑(直接改这里和前面的字体名看效果)") format("truetype");
font-style: normal; font-style: normal;
font-weight: normal; font-weight: normal;
}
} }
</style>` </style>`
$: selected_font = font_list.filter(font => font.selected); $: selected_font = font_list.filter(font => font.selected);

3
static/svelte.d.ts vendored Normal file
View File

@ -0,0 +1,3 @@
declare module '*.svelte' {
export default any;
}