21 lines
707 B
CSS
21 lines
707 B
CSS
/* src/styles/global.css */
|
|
/* 设置全局默认字体 */
|
|
html {
|
|
font-family: 'Baloo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Baloo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
line-height: 1.4; /* 添加行高控制 */
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
/* 如果需要确保所有元素都使用该字体 */
|
|
* {
|
|
font-family: 'Baloo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
line-height: 1.4; /* 统一控制行高 */
|
|
} |