如何在 sapper 中添加全局样式
Posted
技术标签:
【中文标题】如何在 sapper 中添加全局样式【英文标题】:How to add global styles in sapper 【发布时间】:2021-11-07 21:03:03 【问题描述】:目前我正在使用this 模板,我想将我的全局字体系列更改为“Poppins”。我该怎么做?
这是我的尝试,但它仍然不起作用。
static/tailwind.css
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
*
font-family: "Poppins";
@tailwind base;
@tailwind components;
@tailwind utilities;
【问题讨论】:
【参考方案1】:<style>
:global(a)
font-size: 1em;
</style>
或
<style lang="scss">
:global
@import 'stylesheets/main.scss';
</style>
【讨论】:
【参考方案2】:啊解决了,把这个添加到我的src/index.svelte
,但我仍然想知道其他替代解决方案。
<style global>
*
font-family: 'Poppins';
</style>
【讨论】:
以上是关于如何在 sapper 中添加全局样式的主要内容,如果未能解决你的问题,请参考以下文章
如何将 Google Adsense 添加到 Svelte/Sapper 网络应用程序?